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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36
Browser:
Chrome 128
Operating system:
Windows
Device Platform:
Desktop
Date tested:
one year ago
Test name
Executions per second
div by 2
87.8 Ops/sec
div by 2.0
89.1 Ops/sec
multiply by 0.5
86.6 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; }