Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
1213213213213
(version: 0)
Comparing performance of:
from vs fill
Created:
one year ago
by:
Guest
Jump to the latest result
Tests:
from
let n = 10000, length = 50; const result = []; for (let i = 0; i < n; ++i) { result.push(Array.from({length}, _ => length); }
fill
let n = 10000, length = 50; const result = []; for (let i = 0; i < n; ++i) { result.push(Array(length).fill(length)); }
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (2)
Previous results
Fork
Test case name
Result
from
fill
Fastest:
N/A
Slowest:
N/A
Latest run results:
No previous run results
This benchmark does not have any results yet. Be the first one
to run it!
Comments
Confirm delete:
Do you really want to delete benchmark?