Lodash _.over()方法用於創建一個函數,該函數使用接收到的參數調用iteratee並返回其結果。
用法:
_.over(iteratees)
參數:此方法接受上麵提到的和下麵描述的一個參數:
- iteratee:要調用的iteratee。
返回值:此方法返回一個新函數。
範例1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.over() method
var func = _.over([Boolean, isFinite]);
// Saving the result
let gfg1 = func('10');
let gfg2 = func('-5');
let gfg3 = func('null');
let gfg4 = func('NaN');
// Printing the output
console.log(gfg1);
console.log(gfg2);
console.log(gfg3);
console.log(gfg4);
輸出:
[true, true] [true, true] [true, false] [true, false]
範例2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.over() method
var func = _.over([Math.min, Math.max]);
// Saving the result
let gfg = func(5, 10, -5, 20);
// Printing the output
console.log(gfg);
輸出:
[-5, 20]
相關用法
注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 Lodash _.over() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。