“JavaScript Array.from” Ответ

JS массив от

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]
Fylls

JavaScript Array.from

Array.from() creates an array from an iterable
QuietHumility

Массив

// Create an array based on a property of DOM Elements
const images = document.getElementsByTagName('img');
const sources = Array.from(images, image => image.src);
const insecureSources = sources.filter(link => link.startsWith('http://'));
Inquisitive Ibex

массив от JavaScript

// Create an array based on a property of DOM Elements
const images = document.getElementsByTagName('img');
const sources = Array.from(images, image => image.src);
const insecureSources = sources.filter(link => link.startsWith('http://'));
Anthony Smith

массив

const set = new Set(['foo', 'bar', 'baz', 'foo']);
Array.from(set);
// [ "foo", "bar", "baz" ]
Helpless Hyena

массив от JavaScript

//Array from javascript
// The Array.from() static method creates a new, shallow-copied Array instance from an array-like or iterable object.

// 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'];

// Using an arrow function as the map function to
// manipulate the elements
Array.from([1, 2, 3], x => x + x);
// [2, 4, 6]
Chetan Nada

Ответы похожие на “JavaScript Array.from”

Вопросы похожие на “JavaScript Array.from”

Больше похожих ответов на “JavaScript Array.from” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования