Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 435 Bytes

File metadata and controls

17 lines (13 loc) · 435 Bytes

Section 3.8: Number

//Like JavaScript, numbers are floating point values.
let pi: number = 3.14; // base 10 decimal by default
let hexadecimal: number = 0xFF; // 255 in decimal

console.log(pi); // 3.14
console.log(hexadecimal); // 255

// ECMAScript 2015 allows binary and octal.
let binary: number = 0b10; // 2 in decimal
let octal: number = 0o755; // 493 in decimal

console.log(binary); // 2
console.log(octal); // 493