用JavaScript中的filter()和include()过滤数组
假设以下是我们的数组-
const names = ['John', 'David', 'Mike','Sam','Carol','Bob'];
现在,我们将过滤数组-
var nameObject=names.filter((allNameObject) => !['David', 'Mike','Sam','Carol'].includes(allNameObject));
示例
const names = ['John', 'David', 'Mike','Sam','Carol','Bob']; console.log("The names are="); console.log(names); var nameObject=names.filter((allNameObject) => !['David', 'Mike','Sam','Carol'].includes(allNameObject)); console.log("After filter="); console.log(nameObject);
要运行上述程序,您需要使用以下命令-
node fileName.js.
在这里,我的文件名为demo65.js。
输出结果
这将产生以下输出-
PS C:\Users\Amit\JavaScript-code> node demo65.js The names are= [ 'John', 'David', 'Mike', 'Sam', 'Carol', 'Bob' ] After filter= [ 'John', 'Bob' ]