LANGUAGE ยป JAVASCRIPT
Number
Basic usage โ
js
mynum = 1000; // Decimal notation
mynum = 1e3; // Exponential notation (same as 1 * 10^3 = 1000)
mynum = 0xff; // Hexadecimal notation
mynum = 0b11111111; // Binary notation
Convert from string โ
Both integer and float are Number
.
js
Number.parseInt('10');
Number.parseFloat('3.1416');
If the conversion fails, NaN
is returned.
js
isNaN(myVar);
Rounding โ
To the nearest integer:
js
Math.round(0.9);
// 1
With the specified number of decimal places (string
is returned):
js
3.78932.toFixed(2);
// '3.79'