📜  Node.js | util.types.isArgumentsObject() 方法

📅  最后修改于: 2022-05-13 01:56:31.424000             🧑  作者: Mango

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"}));


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');


输出:

true
false
false

示例 2:

节点.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