El método Underscore.js _.ternary() r que la función dada
Sintaxis:
_.ternary( fun )
Parámetros: este método acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:
- fun: Esta es la función que debe usarse para los parámetros.
Valor de retorno: este método devuelve una nueva función.
Nota: este método no funcionará en JavaScript normal porque requiere que se instale la biblioteca de subrayado-contrib . Se puede instalar usando npm install underscore-contrib
Ejemplo 1:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); // Function to be used function fun() { return arguments; } // Making ternary function var gfgFunc = _.ternary(fun); console.log("Arguments are :", gfgFunc(1, 2, 3));
Producción:
Arguments are : [Arguments] { '0': 1, '1': 2, '2': 3 }
Ejemplo 2:
Javascript
// Defining underscore contrib variable var _ = require('underscore-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(1, 2, 3, 4, 5, 6, 7, 8));
Producción:
Arguments are : [Arguments] { '0': 1, '1': 2, '2': 3 }
Ejemplo 3: en este ejemplo, agregaremos argumentos, pero solo los primeros 3 argumentos usarán este método.
Javascript
// Defining underscore contrib variable var _ = require('underscore-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(1, 2, 3, 4, 5, 6, 7));
Producción:
Sum of first 3 arguments is : 6