Skip to content

radians

Subhajit Sahu edited this page Aug 8, 2022 · 14 revisions

Convert degrees to radians.

Similar: radians, degrees.


function radians(x)
// x: degrees

const xmath = require('extra-math');


xmath.radians(180);
// → 3.141592653589793

xmath.radians(60);
// → 1.0471975511965976


References

Clone this wiki locally