_.isObject()函数用于检查给定的对象是否为对象。如果给定对象元素是对象,则返回布尔值True,否则返回False。 JavaScript函数和数组是对象,而字符串和数字不是对象。
用法:
_.isObject( value )
参数:该函数接受上面提到并在下面描述的一个参数:
- 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">
var info = {
Company:{ name:'GeeksforGeeks' },
Contact:{ Address:{
AddressInfo:'Noida',
ContNo:'+91 9876543210'
} }
};
console.log(_.isObject(info));
</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(_.isObject(true));
console.log(_.isObject(1));
console.log(_.isObject('GeeksforGeeks'));
console.log(_.isObject([1, 2, 3]));
</script>
</body>
</html>
输出:
相关用法
- AngularJS angular.isObject()用法及代码示例
- Lodash _.isObject()用法及代码示例
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Underscore.js | _.isObject() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。