Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Lodash.js vs Nativexxxxx
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Mobile Safari/537.36
Browser:
Chrome Mobile 147
Operating system:
Android
Device Platform:
Mobile
Date tested:
3 days ago
Test name
Executions per second
Native
1.0 Ops/sec
Lodash.js filter
1.2 Ops/sec
HTML Preparation code:
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.4/lodash.min.js"></script>
Script Preparation code:
var max3 = 100000000; // 100,000,000 (100 Million) var arr3 = []; for (var i = 0; i <= max3; i++) { arr3.push(i); }
Tests:
Native
arr3.forEach(function (element, index) { element = element*2; });
Lodash.js filter
_.each(arr3, function (element, index) { element = element*2; });