_.isArguments()函数用于检查给定的对象是否为参数。如果给定对象是参数,则返回布尔值True,否则返回False。
用法:
_.isArguments( 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 arg = (function () {
return _.isArguments(arguments);
})('Welcome', 'to', 'GeeksforGeeks');
console.log(arg);
</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(_.isArguments(true));
console.log(_.isArguments(1));
console.log(_.isArguments('GeeksforGeeks'));
console.log(_.isArguments([1, 2, 3]));
</script>
</body>
</html>
输出:
相关用法
- PHP Ds\Set first()用法及代码示例
- PHP Ds\Set last()用法及代码示例
- p5.js mag()用法及代码示例
- PHP Ds\Set add()用法及代码示例
- d3.js zip()用法及代码示例
- p5.js int()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- p5.js str()用法及代码示例
- PHP Ds\Set contains()用法及代码示例
- PHP pi( )用法及代码示例
- PHP next()用法及代码示例
- p5.js hex()用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Underscore.js | _.isArguments() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。