_.flip()方法返回与给定函数相同的函数函数但以相反的顺序接受参数。
用法:
_.flip( function );
参数:此方法采用带有一些参数的函数。
返回值:这种方法返回一个函数。
注意:由于它需要安装underscore.js contrib库,因此在正常的JavaScript中将无法使用。
可以使用npm install underscore-contrib -save安装underscore.js contrib库。
范例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));
输出:
Value of a is 3 and Value of b is 2 and Value of c is 1
范例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"));
输出:
GeeksforGeeks is Computer Science Portal for Geeks
相关用法
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 Underscore.js _.flip() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。