Az Array.from metódus bármilyen iterálható objektumból tömböt ad vissza.
Array.from
Array.from(arrayLike) Array.from(arrayLike, mapFn) Array.from(arrayLike, mapFn, thisArg)
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]