Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
FAQ
Register
Log In
Run results for:
lodash.each vs ES6 FOR vs Native - v.2
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36
Browser:
Chrome 141
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
10 months ago
Benchmark engine:
Benchmark.js
ES6
98.6M/s
Native
96.5M/s
lodash.each
27.4M/s
View exact numbers
Test name
Executions per second
✓
ES6
98,551,408 Ops/sec
Native
96,461,400 Ops/sec
lodash.each
27,397,206 Ops/sec
HTML Preparation code:
<script src="https://cdn.jsdelivr.net/lodash/4.16.0/lodash.min.js"></script>
Script Preparation code:
var value = {a: 30310, b: 100303, c: 3040494}
Tests:
lodash.each
_.each(value, function(v,i) {})
ES6
for (const key of Object.keys(value)) {}
Native
Object.keys(value).forEach(function(key) {})