Array.from()
BaselineWidely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.
TheArray.from()
static method creates a new, shallow-copiedArray
instance from aniterable orarray-like object.
Try it
console.log(Array.from("foo"));// Expected output: Array ["f", "o", "o"]console.log(Array.from([1, 2, 3], (x) => x + x));// Expected output: Array [2, 4, 6]
Syntax
Array.from(items)Array.from(items, mapFn)Array.from(items, mapFn, thisArg)
Parameters
items
An iterable or array-like object to convert to an array.
mapFn
OptionalA function to call on every element of the array. If provided, every value to be added to the array is first passed through this function, and
mapFn
's return value is added to the array instead. The function is called with the following arguments:thisArg
OptionalValue to use as
this
when executingmapFn
.
Return value
A newArray
instance.
Description
Array.from()
lets you createArray
s from:
- iterable objects (objects such as
Map
andSet
); or, if the object is not iterable, - array-like objects (objects with a
length
property and indexed elements).
To convert an ordinary object that's not iterable or array-like to an array (by enumerating its property keys, values, or both), useObject.keys()
,Object.values()
, orObject.entries()
. To convert anasync iterable to an array, useArray.fromAsync()
.
Array.from()
never creates a sparse array. If theitems
object is missing some index properties, they becomeundefined
in the new array.
Array.from()
has an optional parametermapFn
, which allows you to execute a function on each element of the array being created, similar tomap()
. More clearly,Array.from(obj, mapFn, thisArg)
has the same result asArray.from(obj).map(mapFn, thisArg)
, except that it does not create an intermediate array, andmapFn
only receives two arguments (element
,index
) without the whole array, because the array is still under construction.
Note:This behavior is more important fortyped arrays, since the intermediate array would necessarily have values truncated to fit into the appropriate type.Array.from()
is implemented to have the same signature asTypedArray.from()
.
TheArray.from()
method is a generic factory method. For example, if a subclass ofArray
inherits thefrom()
method, the inheritedfrom()
method will return new instances of the subclass instead ofArray
instances. In fact, thethis
value can be any constructor function that accepts a single argument representing the length of the new array. When an iterable is passed asitems
, the constructor is called with no arguments; when an array-like object is passed, the constructor is called with thenormalized length of the array-like object. The finallength
will be set again when iteration finishes. If thethis
value is not a constructor function, the plainArray
constructor is used instead.
Examples
Array from a String
Array.from("foo");// [ "f", "o", "o" ]
Array from a Set
const set = new Set(["foo", "bar", "baz", "foo"]);Array.from(set);// [ "foo", "bar", "baz" ]
Array from a Map
const map = new Map([ [1, 2], [2, 4], [4, 8],]);Array.from(map);// [[1, 2], [2, 4], [4, 8]]const mapper = new Map([ ["1", "a"], ["2", "b"],]);Array.from(mapper.values());// ['a', 'b'];Array.from(mapper.keys());// ['1', '2'];
Array from a NodeList
// Create an array based on a property of DOM Elementsconst images = document.querySelectorAll("img");const sources = Array.from(images, (image) => image.src);const insecureSources = sources.filter((link) => link.startsWith("http://"));
Array from an Array-like object (arguments)
function f() { return Array.from(arguments);}f(1, 2, 3);// [ 1, 2, 3 ]
Using arrow functions and Array.from()
// Using an arrow function as the map function to// manipulate the elementsArray.from([1, 2, 3], (x) => x + x);// [2, 4, 6]// Generate a sequence of numbers// Since the array is initialized with `undefined` on each position,// the value of `v` below will be `undefined`Array.from({ length: 5 }, (v, i) => i);// [0, 1, 2, 3, 4]
Sequence generator (range)
// Sequence generator function (commonly referred to as "range", cf. Python, Clojure, etc.)const range = (start, stop, step) => Array.from( { length: Math.ceil((stop - start) / step) }, (_, i) => start + i * step, );// Generate a sequence of numbers from 0 (inclusive) to 5 (exclusive), incrementing by 1range(0, 5, 1);// [0, 1, 2, 3, 4]// Generate a sequence of numbers from 1 (inclusive) to 10 (exclusive), incrementing by 2range(1, 10, 2);// [1, 3, 5, 7, 9]// Generate the Latin alphabet making use of it being ordered as a sequencerange("A".charCodeAt(0), "Z".charCodeAt(0) + 1, 1).map((x) => String.fromCharCode(x),);// ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]
Calling from() on non-array constructors
Thefrom()
method can be called on any constructor function that accepts a single argument representing the length of the new array.
function NotArray(len) { console.log("NotArray called with length", len);}// Iterableconsole.log(Array.from.call(NotArray, new Set(["foo", "bar", "baz"])));// NotArray called with length undefined// NotArray { '0': 'foo', '1': 'bar', '2': 'baz', length: 3 }// Array-likeconsole.log(Array.from.call(NotArray, { length: 1, 0: "foo" }));// NotArray called with length 1// NotArray { '0': 'foo', length: 1 }
When thethis
value is not a constructor, a plainArray
object is returned.
console.log(Array.from.call({}, { length: 1, 0: "foo" })); // [ 'foo' ]
Specifications
Specification |
---|
ECMAScript® 2026 Language Specification # sec-array.from |