0%

js数组方法整理

创建数组

1
2

let array = ['a', 'b']

访问数组

1
2
3
4

let a=array[0]

//a

遍历数组

1
2
3
4

array.forEach(function(item, index, array) {
console.log(item, index)
})

添加元素到数组的末尾

1
2

array.push('c')

删除数组最后一个元素

1
array.pop();

删除数组第一个元素

1
array.shift()

添加元素到数组的第一位

1
array.unshift('1')

获取数组的长度

1
let length=array.length;

获取某个元素在数组中的索引

1
2

let index=array.indexOf('a')

通过索引删除某个元素

1
2

array.splice(1, 1)