JavaScript supports only one type of number, a 64-bit floating-point number. Unlike languages such as Java and C++, JavaScript makes no distinction between integers (whole numbers) and real values (numbers with decimals). It consistently stores numbers as double-precision floating-point, in accordance with the international IEEE 754 standard.
let num;
num = 3.14159265;
console.log(typeof num); // number
num = 3;
console.log(typeof num); // number
So, an apparent integer is implicitly a floating-point number!
const num = 1 / 2;
console.log(num); // 0.5
There is, like in most programming languages, unavoidable round-off errors:
console.log(0.1 + 0.2); // 0.30000000000000004
42
, 0.42
420e-1
0x2A
0b101010
0o52
console.log(42); // 42
console.log(420e-1); // 42
console.log(0x2A); // 42
console.log(0b101010); // 42
console.log(0o52); // 42
JavaScript has the special values Infinity
and -Infinity
:
console.log(1 / 0); // Infinity
console.log(-1 / 0); // -Infinity
console.log(10 * Number.MAX_VALUE); // Infinity
There is also NaN
, which means “Not a Number.” You get this when, e.g., number cannot be parsed from a string or when a Math operation result is not a real number.
console.log(parseInt("blahblah")); // NaN
console.log(Math.sqrt(-1)); // NaN
You also get NaN
when you do weird stuff!
console.log(0 * Infinity); // NaN
console.log("JavaScript" / 2); // NaN
For a reference, visit MDN web docs on Infinity
and NaN
.
You can borrow many useful methods defined in Number
object. For instance, there is a toString
method with optional base argument (between 2 and 36):
const num = 42;
const base = 2;
console.log(num.toString(base)); // 101010
The toPrecision
and toExponential
can be used for formatting:
const num = 3.14159265;
console.log(num.toPrecision(2)); // 3.1
const val = 1000000;
console.log(val.toExponential()); // 1e+6
The Number
object has several useful static method and constants as well. For example, there is parseInt
method with optional base argument (between 2 and 36):
const num = "0x2A"; // Note this is a string!
const base = 16;
console.log(Number.parseInt(num, base)); // 42
There is parseFloat
method to convert floating point to number:
const num = "0.001"; // Note this is a string!
console.log(Number.parseFloat(num) * 2); // 0.002
There are several methods for type checking:
console.log(Number.isFinite(-1 / 0)); // false
console.log(Number.isNaN(1 / 0)); // false
console.log(Number.isInteger(2.1)); // false
And many useful constants:
console.log(Number.MAX_VALUE); // 1.7976931348623157e+308
console.log(Number.MIN_VALUE); // 5e-324
console.log(Number.MAX_SAFE_INTEGER); // 9007199254740991
console.log(Number.MIN_SAFE_INTEGER); // -9007199254740991
console.log(Number.POSITIVE_INFINITY); // Infinity
console.log(Number.NEGATIVE_INFINITY); // -Infinity
For a reference, visit Number
on MDN web docs.
JavaScript number type cannot represent integers bigger than (Number.MAX_SAFE_INTEGER
constant). For integers larger than that limit, you can use a special built-in object, BigInt
.
BigInt
can be used to represent arbitrary large integers.
BigInt
literal have suffix n
:
const num = 18889465931478580854784n;
console.log(typeof num); // bigint
console.log(num * num); // 356811923176489970264571492362373784095686656
You can also create BigInt
by calling BigInt()
function:
const num = Number.MAX_SAFE_INTEGER;
console.log(num * num); // 8.112963841460666e+31
console.log(BigInt(num * num)); // 81129638414606663681390495662080
You cannot mix BigInt
with other numbers
const num = 18889465931478580854784n;
console.log(num + 1); // TypeError: Cannot mix BigInt and other types, use explicit conversions
For reference, visit BigInt
on MDN Web Docs.