JavaScript 中 _without() 方法的重要性是什么?

javascriptobject oriented programmingfront end technology

_without() 

此方法位于 javascript 的 underscore.js 库中。它接受两个参数,并从第一个数组中删除第二个数组中存在的元素。它不关心值是 true  还是 false,它逐个检查每个值并继续执行任务。确保区分大小写。

语法

_.without( array, values);

示例

在下面的示例中,它检查第二个参数中存在的值是否在第一个参数中,并尝试删除可用的值。

<html>
<body>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/0.10.0/lodash.min.js"></script>
</head>
<body>
<script>
   document.write(_.without([5, 6, 4, 8, 9, 9, 0, 1], 0, 9, 1));
</script>
</body>
</html>

输出

5,6,4,8

在下面的例子中,单词 java 同时出现在第一个和第二个参数中,尽管它没有被删除,因为第二个参数中的"JAVA"是大写,而第一个参数中的"java"是小写。

示例

<html>
<body>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/0.10.0/lodash.min.js"></script>
</head>
<body>
<script>
   document.write(_.without([5, 6, "c++", "php", "java", "javascript", 0, 1], 0, "JAVA", 1));
</script>
</body>
</html>

输出

5,6,c++,php,java,javascript

相关文章