Skip to content

02 type data number

Fajar Fadilah edited this page Mar 25, 2022 · 2 revisions

source code 02-type-data-number.js

// * tipe data number
console.log(100);
console.log(100.100);

// * number notation
console.log(0xababab); // hexadesimal 
console.log(0b000010); // binery
console.log(0o000001); // oktal

hasil

100
100.1   
11250603
2       
1

Clone this wiki locally