-
Notifications
You must be signed in to change notification settings - Fork 0
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); // oktalhasil
100
100.1
11250603
2
1