nodejs如何实现删除数组元素

2024年03月30日 建站教程

在Node.js开发中,如何使用各种方法对数组元素进行操作。下面web建站小编给大家简单介绍一下!

利用​filter方法删除​

let myArray = ['web', 'vue', 'html', 'css'];
let newArray = myArray.filter(function(elm) {
  return elm !== 'web' && elm !== 'css';
});

// 删除web和css
console.log(newArray); // ["vue", "html"]

本文链接:http://so.lmcjl.com/news/717/

展开阅读全文
相关内容