_.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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。