_.isFunction()函数用于检查给定对象是否为函数。如果给定对象是函数,则返回布尔值True,否则返回False。
用法:
_.isFunction( object )
参数:该函数接受上述和以下描述的单个参数:
- object:它包含需要检查对象是否函数的对象的值。
返回值:如果给定的对象是函数,则返回True,否则返回False。
范例1:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src=
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
</head>
<body>
<script type="text/javascript">
console.log(_.isFunction(function (element) {
return element % 2 != 0;
}));
console.log(_.isFunction(function (n) {
return n < 2 ? n:fib(n - 1) + fib(n - 2);
}));
</script>
</body>
</html>
输出:
范例2:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src=
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
</head>
<body>
<script type="text/javascript">
console.log(_.isFunction(alert));
console.log(_.isFunction(console.log));
console.log(_.isFunction('GeeksgorGeeks'));
</script>
</body>
</html>
输出:
相关用法
- AngularJS angular.isFunction()用法及代码示例
- JQuery isFunction()用法及代码示例
- p5.js nfp()用法及代码示例
- p5.js nfc()用法及代码示例
- PHP Ds\Set add()用法及代码示例
- p5.js nfs()用法及代码示例
- PHP Ds\Set last()用法及代码示例
- p5.js mag()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js nf()用法及代码示例
- PHP each()用法及代码示例
- p5.js box()用法及代码示例
- d3.js d3.sum()用法及代码示例
- p5.js int()用法及代码示例
- CSS url()用法及代码示例
- PHP max( )用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Underscore.js | _.isFunction() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。