JS: Number Input. Binary, Hexadecimal, Octal, Etc

By Xah Lee. Date: .

Hexadecimal Notation

// hexadecimal notation
console.log(0xff === 255);
// true

Octal Notation

// octal notation
console.log(0o777 === 511);
// true

Binary Notation

// binary
console.log(0b11001 === 25);
// true

Scientific Notation

// scientific notation
console.log( 9e2 )
// 900

JavaScript. Number

JavaScript. Convert Decimal, Hexadecimal, Binary