下面web建站小编给大家介绍一下es6语法如何删除一个数组元素,下面用到的函数shift
、pop
、delete
、splice
、length
等。
1、利用shift()函数删除第一个数组元素
var a = [1,2,3,4,5,6,7,8]; //定义数组 a.shift(); console.log(a); //[2, 3, 4, 5, 6, 7, 8]
2、利用pop()删除最后一个数组元素
var a = [1,2,3,4,5,6,7,8]; //定义数组 a.pop(); console.log(a); //[1, 2, 3, 4, 5, 6, 7]
3、利用delete运算符删除指定下标的一个元素
var a = [1,2,3,4,5,6,7,8]; //定义数组 delete a[1] console.log(a); //[1, empty, 3, 4, 5, 6, 7, 8]
4、利用splice()删除任意位置的一个元素
var a = [1,2,3,4,5,6,7,8]; //定义数组 a.splice(1,1) console.log(a); //[1, 3, 4, 5, 6, 7, 8]
5、利用length属性删除最后一个数组元素
var a = [1,2,3,4,5,6,7,8]; //定义数组 a.length = 5 console.log(a); //[1, 2, 3, 4, 5]
标签: delete, es6语法, length, pop, shift, splice, 删除元素, 删除数组
上面是“es6语法如何删除一个数组元素(es6函数介绍)”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2432.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!