Questions tagged «data-manipulation»


8
在JavaScript中使用Array.map删除元素
我想通过使用map()函数来过滤项目数组。这是一个代码片段: var filteredItems = items.map(function(item) { if( ...some condition... ) { return item; } }); 问题在于,过滤掉的项目仍然会使用数组中的空间,我想完全清除掉它们。 任何的想法? 编辑:谢谢,我忘了filter(),我想要的实际上是一个filter()然后一个map()。 EDIT2:感谢您指出这map()并filter()不能在所有的浏览器中实现,虽然我的特定代码的目的不是为了在浏览器中运行。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.