I have a problem with Math.sin. I thought it would output the sinus of the given integer. So I tried Math.sin(30) and my output was -0.9880316240928618 and then I checked with my calculator and it was 0.5.
| ||||
|
feedback
|
|
Parameters are assumed to be in radians, not degrees. Try
| |||||||||
feedback
|
|
Math.sin accepts values in radians, while your calculator is set to degrees. | |||
|
feedback
|
|
As was said above, Math.sin() requires the use of radians as input. To convert degrees to radians, use:
| |||
|
feedback
|