Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Lodash Filter test
(version: 1)
Comparing performance of:
Native vs Lodash
Created:
one year ago
by:
Registered User
Jump to the latest result
HTML Preparation code:
<!--your preparation HTML code goes here-->
Script Preparation code:
var max1 = 100000; // 100,000 (100 Thousand) var max2 = 10000000; // 10,000,000 (10 Million) var max3 = 100000000; // 100,000,000 (100 Million) var arr1 = []; //for (var i = 0; i <= max1; i++) { arr1.push(i); } var arr2 = []; for (var i = 0; i <= max2; i++) { arr2.push(i); } var arr3 = []; //for (var i = 0; i <= max3; i++) { arr3.push(i); }
Tests:
Native
arr2.filter((el, index) => { return el % 2 === 0; });
Lodash
_.filter(arr2, (el) => { return el % 2 === 0; })
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (2)
Previous results
Fork
Test case name
Result
Native
Lodash
Fastest:
N/A
Slowest:
N/A
Latest run results:
Run details:
(Test run date:
one year ago
)
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 PrismaAccessBrowser
Browser/OS:
Chrome 133 on Windows
View result in a separate tab
Embed
Embed Benchmark Result
Test name
Executions per second
Native
5.7 Ops/sec
Lodash
7.0 Ops/sec
Related benchmarks:
Lodash.js vs Native 2
Lodash.js vs Native (filter)
Lodash.js filter vs Native
lodash benchmark
lodash array sizes
lodash test3
Test1212312415
lodash vs native for
Lodash.js vs Native - filter
Comments
Confirm delete:
Do you really want to delete benchmark?