Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 774 Bytes

degreesToRads.md

File metadata and controls

24 lines (19 loc) · 774 Bytes
title tags author_title author_url author_image_url description image
degreesToRads
math,beginner
Deepak Vishwakarma
Implementation of "degreesToRads" in typescript, javascript and deno.

JS TODO

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