Lodash es una biblioteca de JavaScript que funciona en la parte superior de underscore.js. Lodash ayuda a trabajar con arrays, strings, objetos, números, etc.
El método _.ternary() reafirma que la función dada
Sintaxis:
_.ternary( fun )
Parámetros: este método toma un solo parámetro como se indica arriba y se analiza 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 contribuciones de Lodash. La biblioteca lodash-contrib se puede instalar usando npm install lodash-contrib –save
Ejemplo 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"));
Producción:
Arguments are : [Arguments] { '0': 'first', '1': 'second', '2': 'third' }
Ejemplo 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"));
Producción:
Arguments are : [Arguments] { '0': 'a', '1': 'b', '2': 'c' }
Ejemplo 3: en este ejemplo, agregaremos argumentos, pero solo los primeros 3 argumentos usarán este método.
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));
Producción:
Sum of first 3 arguments is : 1200