“JS MARREAL MAP MAP” Ответ

JS MARREAL MAP MAP

let filledArray = new Array(10)
    .fill(null)
    .map(()=> ({'hello':'goodbye'}))

// In this approach, we are creating an array with ten empty slots, 
// then filling those slots with the null value, 
// then creating a new array with unique objects. 
// Now when we change an object in the array, 
// we are only changing a specific object, not a reference to an object.
Evergreen Tomato

Массив заполнения со значениями javaScript

let filledArray = new Array(10).fill({'hello':'goodbye'});
Cute Crossbill

Ответы похожие на “JS MARREAL MAP MAP”

Вопросы похожие на “JS MARREAL MAP MAP”

Больше похожих ответов на “JS MARREAL MAP MAP” по JavaScript

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

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