数组的一些常用方法

作者: 护卫天使 | 来源:发表于2021-03-13 19:20 被阅读0次

    let arr = [1,2,4,3,5,6]

        // length方法代表长度

        console.log(arr.length)

        // 逆序reverse

        console.log(arr.reverse())

        // join转为字符串

        console.log(arr.join())

        // shift头部删除第一个单元

        console.log(arr.shift())

        // pop尾部删除一个单元

        console.log(arr.pop())

        // unshift() 头部添加一个或者几个单元返回数组长度

        console.log(arr.unshift(7),arr)

        // push() 尾部添加一个或几个单元

        console.log(arr.push(9),arr)

        // 排序sort()

        console.log(arr.sort())

        // indexof 在数组中查找一个值是否存在 -1代表没有,存在返回单元在数组中的下标

        console.log(arr.indexOf(5))

        // forEach()遍历数组

        arr.forEach(res => {console.log(res)})

        // toString()转为字符串

        console.log(arr.toString())

    相关文章

      网友评论

        本文标题:数组的一些常用方法

        本文链接:https://www.haomeiwen.com/subject/zsoxcltx.html