Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
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:
8 months ago
Test name
Executions per second
lodash.each
27386448.0 Ops/sec
ES6
105689560.0 Ops/sec
Native
98207528.0 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) {})