Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
divide by 2 vs multiply by 0.5
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Android 16; Mobile; rv:149.0) Gecko/149.0 Firefox/149.0
Browser:
Firefox Mobile 149
Operating system:
Android
Device Platform:
Mobile
Date tested:
one month ago
Test name
Executions per second
div by 2
6745.7 Ops/sec
div by 2.0
6800.1 Ops/sec
multiply by 0.5
6647.8 Ops/sec
Script Preparation code:
const length = 100000; const tmp_nums=[]; for (let i = 0; i < length; i++) { tmp_nums.push(Date.now() + Math.random()); } nums = [...tmp_nums]; nums_len = length;
Tests:
div by 2
const length = nums_len; for (let i = 0; i < length; i++) { nums[i] /= 2; }
div by 2.0
const length = nums_len; for (let i = 0; i < length; i++) { nums[i] /= 2.0; }
multiply by 0.5
const length = nums_len; for (let i = 0; i < length; i++) { nums[i] *= 0.5; }