JAVA SCRIPT DAY 17

DAY - 17

JavaScript - The Math Object

Ø  The math object provides you properties and methods for mathematical constants and functions.
Ø  Unlike other global objects, Math is not a constructor.
Ø  All the properties and methods of Math are static and can be called by using Math as an object without creating it.Thus, you refer to the constant pi as Math.PI and you call the sine function as Math.sin(x), where x is the method's argument.
Ø  The syntax to call the properties and methods of Math are as follows
varpi_val=Math.PI;
varsine_val=Math.sin(30);

 

Math Properties

Ø  The list of all the properties of Math and their description are:-
Property
Description
Euler's constant and the base of natural logarithms, approximately 2.718.
Natural logarithm of 2, approximately 0.693.
Natural logarithm of 10, approximately 2.302.
Base 2 logarithm of E, approximately 1.442.
Base 10 logarithm of E, approximately 0.434.
Ratio of the circumference of a circle to its diameter, approximately 3.14159.
Square root of 1/2; equivalently, 1 over the square root of 2, approximately 0.707.
Square root of 2, approximately 1.414.

 

Math Methods

The list of the methods associated with Math object and their description are:-
Method
Description
Returns the absolute value of a number.
Returns the arccosine (in radians) of a number.
Returns the arcsine (in radians) of a number.
Returns the arctangent (in radians) of a number.
Returns the arctangent of the quotient of its arguments.
Returns the smallest integer greater than or equal to a number.
Returns the cosine of a number.
Returns EN, where N is the argument, and E is Euler's constant, the base of the natural logarithm.
Returns the largest integer less than or equal to a number.
Returns the natural logarithm (base E) of a number.
Returns the largest of zero or more numbers.
Returns the smallest of zero or more numbers.
Returns base to the exponent power, that is, base exponent.
Returns a pseudo-random number between 0 and 1.
Returns the value of a number rounded to the nearest integer.
Returns the sine of a number.
Returns the square root of a number.
Returns the tangent of a number.
Returns the string "Math".

No comments:

Post a Comment

Give your valuable feedback

Topic :Software & Types, Subject: Computer Fundamental Notes for CSJM University Kanpur(for different courses like BBA, BCA, etc..)

Software Software refers to the programs, data, and instructions that enable a computer or other digital device to perform specific tasks or...