Convert To Scientific Notation

1.Create a function called convertToScientificNotation that takes a float as a parameter and returns a string. 2. The return value should be a string of the number in scientific notation. 3. Example: convertToScientificNotation(8.9) returns "8.9 * 10 ^ 0"

Black Diamond

Handle negative numbers.