Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
* 10, round vs trunc vs floor vs parseFloat vs ~~ vs 0 | vs parseInt vs parseInt, 10
fastest from float to int with multiplication
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36
Browser:
Chrome 119
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
2 years ago
Test name
Executions per second
trunc
9089574.0 Ops/sec
round
9058531.0 Ops/sec
floor
9045109.0 Ops/sec
parseFloat to int
3610827.8 Ops/sec
~~
1033449856.0 Ops/sec
0 |
1030017792.0 Ops/sec
parseInt
8951245.0 Ops/sec
parseInt, 10
8911959.0 Ops/sec
Tests:
trunc
const x = Math.trunc(12.34 * 10); const y = Math.trunc(567.89 * 10);
round
const x = Math.round(12.34 * 10); const y = Math.round(567.89 * 10);
floor
const x = Math.floor(12.34 * 10); const y = Math.floor(567.89 * 10);
parseFloat to int
const x = parseFloat((12.34 * 10).toFixed()); const y = parseFloat((567.89 * 10).toFixed());
~~
const x = ~~(12.34 * 10); const y = ~~(567.89 * 10);
0 |
const x = (0 | 12.34 * 10); const y = (0 | 567.89 * 10);
parseInt
const x = parseInt(12.34 * 10); const y = parseInt(567.89 * 10);
parseInt, 10
const x = parseInt(12.34 * 10, 10); const y = parseInt(567.89 * 10, 10);