我需要知道如何从一个充满多字条目的数组中删除单个字条目。以下是该数组的示例:
INPUT:
[ "Off the bloody wall", "who?", "That sounds familiar" , "lol", "what the hell" ]
渴望输出
[ "Off the bloody wall", "That sounds familiar" , "what the hell" ]
我可以为此制作一个多阶段解决方案,但也许有人知道快速的单行jQuery解决方案?
答案 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(' '))
)