当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.without()用法及代码示例


_.without方法以过滤后的形式创建一个新数组,该数组具有要排除的值并提供新值作为输出。
注意:与_.pull()方法不同,此方法返回一个新数组。

用法:

_.without(array, [values])

参数:该方法接受上述和以下所述的两个参数:

  • array:此参数保存要检查的数组。
  • [值]:此参数保存要排除的值。

返回值:此方法返回新的过滤值数组。

范例1:在这里,const _ = require(‘lodash’)用于将lodash库导入文件中。



javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var w = _.without([3.2, 5.2,  
       5.2, 1.2], 5.2, 3.2);     
  
// Use of _.without() method 
let gfg = _.without(w); 
      
// Printing the output  
console.log(gfg);

输出:

[ 1.2 ]

范例2:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var w = _.without([3, 5, 5, 1], 1, 3);     
var t = _.without([4, 7, 4, 8], 7, 4); 
  
// Use of _.without() method 
let gfg = _.without(w); 
let gfg1 = _.without(t); 
      
// Printing the output  
console.log(gfg); 
console.log(gfg1);

输出:

[ 5, 5 ]
[ 8 ]

范例3:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var w = _.without(['a', 'b',  
        'c', 'b' ], 'a', 'b');  
var x = _.without(['C++', 'Java',  
    'Python', '.Net' ], 'C++', 'Java'); 
   
// Use of _.without() method 
let gfg = _.without(w); 
let gfg2 = _.without(x); 
       
// Printing the output  
console.log(gfg); 
console.log(gfg2);

输出:

[ 'c' ]
[ 'Python', '.Net' ]

注意:该代码在常规JavaScript中不起作用,因为它需要安装库lodash。




相关用法


注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Lodash _.without() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。