Iterate over Array with empty elements (ES6)

喜欢而已 提交于 2020-01-14 17:50:49

问题


I have an array with a specified length and I'm trying to populate it with values that are dependent on each index.

let arr = new Array(someLength)
arr.map((v, i) => i * 2)

From what I know, this isn't working because map skips undefined values.

I have a few questions:

  1. Why does map work on something like [undefined, undefined]?
  2. Is there anyway to accomplish this using ES6 array methods?

    I know I can use a standard for loop, but was wondering if there's a nicer way to do it.

    for (let i = 0; i < arr.length; i++) { 
       arr[i] = i * 2 
    }
    

    I've found one method so far, it's not really clean though.

    arr = arr.fill(undefined).map((foo, i) => i * 2)
    

回答1:


  1. Why does .map work on something like [undefined, undefined]?

Consider these two scenarios

let a1 = [];
a1.length = 2;
a1; // [undefined × 2]

// vs

let a2 = [undefined, undefined];
a2; // [undefined, undefined]

What would be the result of Object.keys on each of these?

Object.keys(a1); // []
Object.keys(a2); // ["0", "1"]

So, we can see the difference between the two - one has initialised keys, the other doesn't


  1. Is there anyway to accomplish this using ES6 array methods?

You already pointed out .fill, you could also use Array.from

Array.from({length: 5}, (itm, idx) => 2 * idx); // [0, 2, 4, 6, 8]



回答2:


You could generate an array with undefined values.

Array.apply(null, {length: 5})

and use it for the mapping.

var array = Array.apply(null, {length: 5});
console.log(array);

array = array.map((_, i) => 2 * i);
console.log(array);



回答3:


You just have to fill the array with 0. Then you could process with map or forEach like this :

var arr = new Array(5); //[,,,,,]
arr.fill(0).forEach((v, i, tab) => {tab[i] = i * 2}); // [ 0, 2, 4, 6, 8 ]


来源:https://stackoverflow.com/questions/38162398/iterate-over-array-with-empty-elements-es6

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!