1 Matching Annotations
- Mar 2022
-
www.cnblogs.com www.cnblogs.com
-
JavaScript 的数学运算
基于 Math 类 Math.ceil() Math.floor()
3.1415926.toFixed(2) // 保留小数位 99.89233.toPrecision(5) // 整体长度,含整数部分
全局对象 window 的方法
parseInt('100') parseInt(100.12) parseInt('string') // => NaN
Number("string") // => 0
位运算:
| 0 , 和 0 按位或 ~~ ,两次按位非
0,右移 0 位 << 0,左移 0 位
0,无符号右移 0 位
Tags
Annotators
URL
-