从数组中删除单个词条目

时间:2016-10-01 12:38:29

标签: javascript arrays

我需要知道如何从一个充满多字条目的数组中删除单个字条目。以下是该数组的示例:

INPUT:

[ "Off the bloody wall", "who?", "That sounds familiar" , "lol", "what the hell"  ]

渴望输出

[ "Off the bloody wall", "That sounds familiar" , "what the hell"  ]

我可以为此制作一个多阶段解决方案,但也许有人知道快速的单行jQuery解决方案?

1 个答案:

答案 0 :(得分:2)

您可以使用Array.protype.filter删除未传递谓词函数的元素,使用String.prototype.match来测试字符串以进行匹配。在这种情况下,如果没有空格,我们会过滤掉属性。

const arr = [ "Off the bloody wall", "who?", "That sounds familiar" , "lol", "what the hell"  ]

console.log(
  arr.filter(item => item.match(' '))
)