Lodash是一个JavaScript库,可在underscore.js之上运行。 Lodash帮助处理数组,字符串,对象,数字等。
_.flip()方法用于创建一个函数,该函数调用给定的func参数,其参数取反。
用法:
_.flip( func )
参数:此方法接受如上所述和以下描述的单个参数:
- func:此参数保存带有一些参数的函数。
返回值:此方法返回新的翻转函数。
范例1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
function Func(a, b) {
return b + " is " + a;
}
// Using the _.flip() method
var gfg = _.flip(Func);
console.log(
gfg("GeeksforGeeks",
"A Computer Science Portal for Geeks")
);
输出:
"GeeksforGeeks is A Computer Science Portal for Geeks"
范例2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Using the _.flip() method
var flipped = _.flip(function() {
return _.toArray(arguments);
});
console.log(
flipped('c', 'cpp', 'java', 'python')
);
输出:
['python', 'java', 'cpp', 'c']
相关用法
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 Lodash _.flip() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。