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 (iPhone; CPU iPhone OS 16_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1
Browser:
Mobile Safari 16
Operating system:
iOS 16.6.1
Device Platform:
Mobile
Date tested:
2 years ago
Test name
Executions per second
div by 2
175.1 Ops/sec
div by 2.0
156.1 Ops/sec
multiply by 0.5
153.0 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; }