const _delete = _前端 将数组的某个值返回新的数组">
当前位置:   article > 正文

返回新数组_前端 将数组的某个值返回新的数组

前端 将数组的某个值返回新的数组

描述

该函数接受两个参数分别为数组、索引值,要求在不改变原数组的情况下返回删除了索引项的新数组。

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset=utf-8>
  5. </head>
  6. <body>
  7. <script type="text/javascript">
  8. const _delete = (array,index) => {
  9. //1、要求不改变原数组,所以可以先将原数组拷贝一份,array.concat()
  10. let newarr = array.concat();
  11. //2、用splice()截取元素,此函数会改变数组
  12. newarr.splice(index,1);
  13. return newarr;
  14. }
  15. //方法二:JSON
  16. const _delete = (array,index) =>{
  17. let newArr = JSON.parse(JSON.stringify(array))
  18. newArr.splice(index, 1)
  19. return newArr
  20. }
  21. </script>
  22. </body>
  23. </html>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/113469
推荐阅读
相关标签
  

闽ICP备14008679号