Basic JavaScript Question:
Download Job Interview Questions and Answers PDF
What's Math Constants and Functions using JavaScript?
Answer:
The Math object contains useful constants such as
Math.PI, Math.E
Math also has a zillion helpful functions in JavaScript.
Math.abs(value); //absolute value
Math.max(value1, value2); //find the largest
Math.random() //generate a decimal number between 0 and 1
Math.floor(Math.random()*101) //generate a decimal number between 0 and 100
Math.PI, Math.E
Math also has a zillion helpful functions in JavaScript.
Math.abs(value); //absolute value
Math.max(value1, value2); //find the largest
Math.random() //generate a decimal number between 0 and 1
Math.floor(Math.random()*101) //generate a decimal number between 0 and 100
Download JavaScript Interview Questions And Answers
PDF
Previous Question | Next Question |
How to test for bad numbers using JavaScript? | What's the Date object using JavaScript? |