创建指定长度指定内容的数组

核心思想:

Array.from()传入两个参数:

第一个参数为对象,仅一个属性length,指定了第二个参数运行的次数;

第二个参数为回调函数,回调函数有两个参数,分别是数组元素、下标,实现对数组元素值的设置,元素值默认undefined;

案例如下:

Array.from({length: 5},(item,index)=>item = 'test' + index)
// 打印结果: ["test0", "test1", "test2", "test3", "test4"]

封装如下:

/**
 * @method 创建指定长度指定元素内容的数组
 * @param {Number} length 数组长度
 * @param {*} value 数组元素值,默认undefined
 * @returns {Array}
*/
function createArr(length, value){
    return Array.from({length: length},(item,index)=>item = value)
}

 

 

 

你可能感兴趣的:(原生js,其他)