Lodash _.isFunction() 方法
Lodash _.isFunction() 方法检查给定值是否为函数对象并返回相应的布尔值。
句法:
_.isFunction( value )
参数:此方法接受上面提到的单个参数,如下所述:
- value:此参数保存要检查的函数对象的值。
返回值:此方法返回一个布尔值(如果给定值为函数对象编号,则返回 true,否则返回 false)。
示例 1:
Javascript
// Defining Lodash variable
const _ = require('lodash');
function Geeks(){
var a="gfg";
}
// Checking for Function
console.log("The Value is Function : "
+ _.isFunction(Geeks));
Javascript
// Defining Lodash variable
const _ = require('lodash');
// Checking for Function
console.log("The Value is Function : "
+ _.isFunction("Function"));
Javascript
// Defining Lodash variable
const _ = require('lodash');
// Checking for Function
console.log("The Value is Function : "
+ _.isFunction(_));
输出:
The Value is Function : true
示例 2:
Javascript
// Defining Lodash variable
const _ = require('lodash');
// Checking for Function
console.log("The Value is Function : "
+ _.isFunction("Function"));
输出:
The Value is Function : false
示例 3:对于 _ 对象,它返回 true。
Javascript
// Defining Lodash variable
const _ = require('lodash');
// Checking for Function
console.log("The Value is Function : "
+ _.isFunction(_));
输出:
The Value is Function : true