| my_notes |
| 1 | 3e5 // 300000 3e-5 // 0.00003 1 / 0 // Infinity -1 / 0 // -Infinity 0 / 0 // NaN isNaN(1) // false isFinite(1) // true if it's not NaN, Infinity, -Infinity +'12test' // NaN parseInt('12px'); // 12 parseFloat('12.3 test'); // 12.3 255..toString(16) // ff 2..toString(2) // 100 Math.floor(3.1); // 3 Math.ceil(3.1); // 4 Math.round(3.1); // 3 12.3 ^ 0 // 12 ~~12.3 // 12 12.34..toFixed(1) // 12.3 Math.sqrt(9) // 3 Math.pow(3, 2) // 9 Math.abs(-3) // 3 Math.max(1, 2, 3) // 3 Math.min(1, 2, 3) // 1 123456..toLocaleString(); // '123 456' |
Комментарии