當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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