JavaScript: Convert an given angle from degrees to radians
JavaScript fundamental (ES6 Syntax): Exercise-246 with Solution
Write a JavaScript program to convert angles from degrees to radians.
- Use Math.PI and the degree to radian formula to convert the angle from degrees to radians.
Sample Solution:
JavaScript Code:
//#Source https://bit.ly/2neWfJ2
const degreesToRads = deg => (deg * Math.PI) / 180.0;
console.log(degreesToRads(90.0));
console.log(degreesToRads(30.0));
Sample Output:
1.5707963267948966 0.5235987755982988
Pictorial Presentation:
Flowchart:

Live Demo:
See the Pen javascript-basic-exercise-246-1 by w3resource (@w3resource) on CodePen.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to Invokes the provided function after wait milliseconds.
Next: Write a JavaScript program that Assigns default values for all properties in an object that are undefined.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join