Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 299 Bytes

radsToDegrees.md

File metadata and controls

16 lines (12 loc) · 299 Bytes
title tags
radsToDegrees
math,beginner

Converts an angle from radians to degrees.

  • Use Math.PI and the radian to degree formula to convert the angle from radians to degrees.
const radsToDegrees = rad => (rad * 180.0) / Math.PI;
radsToDegrees(Math.PI / 2); // 90