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 (Macintosh; Intel Mac OS X 10.15; rv:125.0) Gecko/20100101 Firefox/125.0
Browser:
Firefox 125
Operating system:
Mac OS X 10.15
Device Platform:
Desktop
Date tested:
one year ago
Test name
Executions per second
div by 2
10414.1 Ops/sec
div by 2.0
10390.7 Ops/sec
multiply by 0.5
10231.4 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; }