2024年05月16日 建站教程
如何利用js代码中的pop
、push
、unshift
、shift
实现数组中的一些新增删除功能!
const arr = [ 1, 2, 3, 4, 5 ] //添加到数组的尾端 arr.push(6) //[1,2,3,4,5,6] //再次调用pop方法就删除了最后一位 arr.pop()//[1,2,3,4,5]
const arr = [ 1, 2, 3, 4, 5 ] //添加到数组的前端 arr.unshift(6) //[6,1,2,3,4,5] //再次调用shift方法就删除了第一位 arr.shift()//[1,2,3,4,5]
本文链接:http://so.lmcjl.com/news/4637/