References

Array.from()

Leírás

Az Array.from metódus bármilyen iterálható objektumból tömböt ad vissza.

Szintaxis

Array.from(arrayLike)
Array.from(arrayLike, mapFn)
Array.from(arrayLike, mapFn, thisArg)

Példa

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]
in this article
back to top