El método _.flip() devuelve la función
Sintaxis:
_.flip( function );
Parámetros: Este método toma una función que toma algunos argumentos.
Valor de retorno: este método r
Nota: Esto no funcionará en JavaScript normal porque requiere que se instale la biblioteca de contribuciones underscore.js.
La biblioteca de contribución underscore.js se puede instalar mediante npm install underscore-contrib –save.
Ejemplo 1:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); function gfgFunc(a, b, c) { return "Value of a is " + a + " and Value of b is " + b + " and Value of c is " + c; } var abc = _.flip(gfgFunc); console.log(abc(1, 2, 3));
Producción:
Value of a is 3 and Value of b is 2 and Value of c is 1
Ejemplo 2:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); function gfgFunc(a, b) { return b + " is " + a; } var gfg = _.flip(gfgFunc); console.log(gfg("GeeksforGeeks",+ "Computer Science Portal for Geeks"));
Producción:
GeeksforGeeks is Computer Science Portal for Geeks