Lodash是一个JavaScript库,可在underscore.js之上运行。 Lodash帮助处理数组,字符串,对象,数字等。
_.ternary()方法重新开启新函数那仅接受三个参数,并将这些参数传递给给定的函数。给定的任何其他参数将被丢弃。
用法:
_.ternary( fun )
参数:此方法采用上面列出并在下面讨论的单个参数:
- fun:这是应用于参数的函数。
返回值:此方法返回一个新函数。
注意:此方法在常规JavaScript中不起作用,因为它需要安装Lodash contrib库。可以使用npm install lodash-contrib -save安装lodash-contrib库
范例1:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Function to be used
function fun() {
return arguments;
}
// Making the ternary function
var gfgFunc = _.ternary(fun);
console.log("Arguments are:",
gfgFunc("first", "second", "third"));
输出:
Arguments are:[Arguments] { '0':'first', '1':'second', '2':'third' }
范例2:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Function to be used
function fun() {
return arguments;
}
// Making the ternary function
var gfgFunc = _.ternary(fun);
// Arguments more than 3 are excluded
console.log("Arguments are:",
gfgFunc("a", "b", "c", "d", "e", "f"));
输出:
Arguments are:[Arguments] { '0':'a', '1':'b', '2':'c' }
范例3:在此示例中,我们将添加参数,但是只有前3个参数将使用此方法。
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Function to be used
function add() {
s = 0;
for (i = 0; i < 3; i++) {
s += arguments[i];
}
return s;
}
// Making the ternary function
var gfgFunc = _.ternary(add);
// Arguments more than 3 are excluded
console.log("Sum of first 3 arguments is:",
gfgFunc(100, 100, 1000, 4, 5, 6, 7));
输出:
Sum of first 3 arguments is:1200
相关用法
- underscore.js _.ternary()用法及代码示例
- Lodash _.method()用法及代码示例
- Lodash _.sneq()用法及代码示例
- Lodash _.toQuery()用法及代码示例
- Lodash _.uniqWith()用法及代码示例
- Lodash _.xorWith()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.remove()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.pullAll()用法及代码示例
- Lodash _.pull()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
- Lodash _.fromPairs()用法及代码示例
- Lodash _.differenceWith()用法及代码示例
- Lodash _.castArray()用法及代码示例
- Lodash _.cloneDeep()用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 Lodash _.ternary() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。