parseInt(3.14159) => 3
~~3.14159 => 3
还有:
向上取整 Math.ceil(3.14159) => 4
向下取整 Math.floor(3.14159) => 3
四舍五入 Math.round(3.14159) => 3
parseInt(3.14159) => 3
~~3.14159 => 3
还有:
向上取整 Math.ceil(3.14159) => 4
向下取整 Math.floor(3.14159) => 3
四舍五入 Math.round(3.14159) => 3