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 15; Mobile; rv:137.0) Gecko/137.0 Firefox/137.0
Browser:
Firefox Mobile 137
Operating system:
Android
Device Platform:
Mobile
Date tested:
one year ago
Test name
Executions per second
div by 2
6389.5 Ops/sec
div by 2.0
6317.2 Ops/sec
multiply by 0.5
6255.3 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; }