RADIANS in JS
Description
JavaScript does not provide a method to convert degrees to radians of a given angle. This could be calculated using the equation:
Sample Source Pattern
Implementation example
function radians(angle){
return (Math.PI/180) * angle;
}Arguments
angle: Float expression in degrees.
Return Type
Same data type sent through parameter as a numeric expression in radians.
Examples
Known Issues
No issues were found.
Related EWIs
No related EWIs.
Last updated
