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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.0.0
Browser:
Chrome 139
Operating system:
Windows
Device Platform:
Desktop
Date tested:
one year ago
Benchmark engine:
Benchmark.js
ES6
105.7M/s
Native
98.2M/s
lodash.each
27.4M/s
View exact numbers
Test name
Executions per second
✓
ES6
105,689,560 Ops/sec
Native
98,207,528 Ops/sec
lodash.each
27,386,448 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) {})