博客列表 >1217:Javascript数组,增,改,删

1217:Javascript数组,增,改,删

张浩刚
张浩刚原创
2019年12月18日 14:12:41854浏览
  1. <script>
  2. let arr = ['a','b','c','d'];
  3. //push() 在数组尾部新增一个值
  4. function show1(){
  5. arr.push('e');
  6. console.log(arr);
  7. }
  8. show1();
  9. //pop() 去除数组尾部的一个值
  10. function show2(){
  11. arr.pop();
  12. console.log(arr);
  13. }
  14. show2();
  15. //unshift() 在数组第一个位置,新增一个值
  16. function show3(){
  17. arr.unshift('aa');
  18. console.log(arr);
  19. }
  20. show3();
  21. //shift() 去除数组第一个值
  22. function show4(){
  23. arr.shift();
  24. console.log(arr);
  25. }
  26. show4();
  27. //删除数组中某个或多个值 splice(起始位置,长度)
  28. function show5(){
  29. arr.splice(1, 2);
  30. console.log(arr);
  31. }
  32. show5();
  33. </script>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议