Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Array.prototype.every vs Lodash every
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36
Browser:
Chrome 132
Operating system:
Linux
Device Platform:
Desktop
Date tested:
one year ago
Array.prototype.every
98.7M/s
Lodash every
52.3M/s
View exact numbers
Test name
Executions per second
✓
Array.prototype.every
98,672,264 Ops/sec
Lodash every
52,274,592 Ops/sec
HTML Preparation code:
<script src="lodash.js"></script>
Script Preparation code:
var array = [...Array(100000).keys()];
Tests:
Array.prototype.every
array.every(n => n === 0)
Lodash every
_.every(array,n => n === 0)