Degrees to radians

JavaScript, Math · Sep 15, 2020

Converts an angle from degrees to radians.

  • Use Math.PI and the degree to radian formula to convert the angle from degrees to radians.
const degreesToRads = deg => (deg * Math.PI) / 180.0;
degreesToRads(90.0); // ~1.5708

More like this

  • JavaScript Unit Conversions

    Learn how to convert between different units of measurement in JavaScript.

    Collection · 6 snippets

  • Radians to degrees

    Converts an angle from radians to degrees.

    JavaScript, Math · Sep 15, 2020

  • Integer to roman numeral

    Converts an integer to its roman numeral representation. Accepts value between 1 and 3999 (both inclusive).

    JavaScript, Math · Oct 22, 2020

  • Vector angle

    Calculates the angle (theta) between two vectors.

    JavaScript, Math · Jan 7, 2021