The Underscore.js _.ternary() method returns a new function that accepts only three arguments and passes these arguments to the given function. Any additional arguments that are given are discarded.
Syntax:
_.ternary( fun )
Parameters: This method accepts a single parameter as mentioned above and described below:
- fun: This is the function that should be used for the parameters.
Return Value: This method returns a new function.
Note: This method will not work in normal JavaScript because it requires the underscore-contrib library to be installed. It can be installed using npm install underscore-contrib
Example 1:
Javascript
var _ = require( 'underscore-contrib' );
function fun() {
return arguments;
}
var gfgFunc = _.ternary(fun);
console.log( "Arguments are :" ,
gfgFunc(1, 2, 3));
|
Output:
Arguments are : [Arguments] { '0': 1, '1': 2, '2': 3 }
Example 2:
Javascript
var _ = require( 'underscore-contrib' );
function fun() {
return arguments;
}
var gfgFunc = _.ternary(fun);
console.log( "Arguments are :" ,
gfgFunc(1, 2, 3, 4, 5, 6, 7, 8));
|
Output:
Arguments are : [Arguments] { '0': 1, '1': 2, '2': 3 }
Example 3: In this example, we will add arguments but only the first 3 arguments will be using this method.
Javascript
var _ = require( 'underscore-contrib' );
function add() {
s=0;
for (i=0; i<3; i++) {
s+=arguments[i];
}
return s;
}
var gfgFunc = _.ternary(add);
console.log( "Sum of first 3 arguments is :" ,
gfgFunc(1, 2, 3, 4, 5, 6, 7));
|
Output:
Sum of first 3 arguments is : 6