Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
FAQ
Register
Log In
Run results for:
Ramda vs native map speed
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0
Browser:
Firefox 134
Operating system:
Windows
Device Platform:
Desktop
Date tested:
6 months ago
Benchmark engine:
Benchmark.js
native add 1
24.5M/s
ramda add 1
11.7M/s
View exact numbers
Test name
Executions per second
✓
native add 1
24,466,308 Ops/sec
ramda add 1
11,698,205 Ops/sec
HTML Preparation code:
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.27.1/ramda.js"></script>
Script Preparation code:
var data = [ 1, 2, 3 ]
Tests:
native add 1
data.map(item => item + 1)
ramda add 1
R.map(item => item + 1, data)