数组新增东西

Array.from()

作用:把类数组转为数组

function demo(){
                console.log(arguments);//Arguments(5) [3, 6, 7, 4, 8]
                console.log(Array.from(arguments));//Array(5) [3, 6, 7, 4, 8]
            }
            demo(3,6,7,4,8);

Array.of()

作用:把一组值转为数组

  let arr = Array.of('apple','banana','orange')

arr.find()

作用:查找,找出第一个符合条件的数组成员,如果没有找到,返回undefined

arr.findIndex()

作用:找的是位置,没找到返回-1

arr.fill(填充的东西,开始位置,结束位置)

作用:填充

arr.includes()

作用:查找。包含返回true,不包含返回false

你可能感兴趣的:(ES6)