You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Math/Convert radians to degrees.js

7 lines
171 B
JavaScript

function radians_to_degrees(radians)
{
var pi = Math.PI;
return radians * (180/pi);
}
console.log(radians_to_degrees(0.7853981633974483));