without_.without(array, *values)返回一个删除所有 values 值后的 array 副本。(注:使用===表达式做相等测试。)_.without([1, 2, 1, 0, 3, 1, 4], 0, 1);=> [2, 3, 4]Copy