当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js util.types.isArgumentsObject()用法及代码示例


util.types.isArgumentsObject()方法是util模块的内置应用程序编程接口,主要用于支持Node.js自己的内部API的需求。util.types.isArgumentsObject()方法用于检查给定值是否为参数是否反对。

用法:

util.types.isArgumentsObject( value )

参数:该函数接受上面提到并在下面描述的一个参数:


  • value:它是将检查参数对象的值。

返回值:它返回一个布尔值,即如果传递的值是一个参数对象,则返回true;否则返回false。

以下程序说明了Node.js中的util.types.isArgumentsObject()方法:

范例1:

Node.js

// Node.js program to demonstrate the 
// util.types.isArgumentsObject() method 
  
// Import the util module 
const util = require('util'); 
  
// Checking the arguments object 
console.log(util.types.isArgumentsObject(arguments)); 
  
// Checking new object created by the constructor 
console.log(util.types.isArgumentsObject(new Object())); 
  
// Checking a normal object 
console.log(util.types.isArgumentsObject( 
            {arg1:"Hello", arg2:"World"}));

输出:

true
false
false

范例2:

Node.js

// Node.js program to demonstrate the 
// util.types.isArgumentsObject() method 
  
// Import the util module 
const util = require('util'); 
  
function exampleFn(arg1, arg2) { 
  
  // Checking the arguments object 
  let argumentsObj = arguments; 
  console.log(arguments); 
  
  isArgumentObj = util.types.isArgumentsObject(argumentsObj); 
  console.log("Object is arguments object:", isArgumentObj); 
  
  // Checking a normal object 
  let normalObj = {arg1:"hello", arg2:"world"}; 
  console.log(normalObj); 
  
  isArgumentObj = util.types.isArgumentsObject(normalObj); 
  console.log("Object is arguments object:", isArgumentObj); 
} 
  
exampleFn('hello', 'world');

输出:

[Arguments] { '0':'hello', '1':'world' }
Object is arguments object:true
{ arg1:'hello', arg2:'world' }
Object is arguments object:false

参考: https://nodejs.org/api/util.html#util_util_types_isargumentsobject_value



相关用法


注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Node.js | util.types.isArgumentsObject() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。