var size = 5000;
const arr = Array.from({ length: size });
const arr = new Array(size);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Array.from | |
new Array |
Test name | Executions per second |
---|---|
Array.from | 3452.1 Ops/sec |
new Array | 337100.9 Ops/sec |
Let's break down the JavaScript microbenchmark on MeasureThat.net.
Benchmark Overview
The benchmark compares two approaches for creating new JavaScript arrays: Array.from()
and the traditional new Array()
. The goal is to measure which approach is faster, more efficient, or both.
Options Compared
Two options are being compared:
Array.from({ length: size })
: This method creates a new array by mapping an array with length
property to create the desired number of elements.new Array(size)
: This method creates a new array using the constructor syntax, where size
is the initial length of the array.Pros and Cons
Here's a brief overview of each approach:
Array.from()
: Pros:new Array(size)
: Pros:Library
There is no specific library being used in this benchmark. The Array.from()
method is a built-in JavaScript method, while the new Array(size)
approach relies on the constructor syntax.
Special JS Feature or Syntax
Neither of the approaches uses any special JavaScript feature or syntax. Both are standard ES6+ features.
Other Alternatives
If you're interested in exploring other alternatives for creating arrays, here are a few options:
Array.create()
: This method is similar to new Array(size)
but returns an array object instead of an array constructor.Array.prototype.slice()
: You can create an array by calling the slice()
method on an existing array and specifying the desired length.Here's some sample code demonstrating these alternatives:
// Array.create()
var arr1 = Array.create(10);
console.log(arr1.length); // Output: 10
// Array.prototype.slice()
var arr2 = [1, 2, 3];
var newarr = arr2.slice(0, 5);
console.log(newarr.length); // Output: 5
Keep in mind that the performance characteristics of these alternatives might differ from new Array(size)
and Array.from()
, so be sure to benchmark them if necessary.