Numbers
// This is a float:
let a = 1.2;
// This is an integer:
let b = 10;let a = 2;
let b = a;let x = 999999999999999; // x will be 999999999999999
let y = 9999999999999999; // y will be 10000000000000000let z = 0xFF; // 255Last updated
// This is a float:
let a = 1.2;
// This is an integer:
let b = 10;let a = 2;
let b = a;let x = 999999999999999; // x will be 999999999999999
let y = 9999999999999999; // y will be 10000000000000000let z = 0xFF; // 255Last updated