Node.js – util.types.isBigInt64Array() 方法
util.types.isBigInt64Array() 方法检查传递的值是否为 BigInt64Array 实例。如果满足上述条件,它返回 True,否则返回 False。
语法
util.types.isBigInt64Array(value)
参数
- value − 此输入值获取所需参数的输入,并检查它是否为 BigInt64 数组实例。
它根据传递的输入值返回 True 或 False。
示例 1
创建一个名为 “isBigInt64Array.js” 的文件,并复制以下代码片段。创建文件后,使用命令 “node isBigInt64Array.js” 运行此代码。
// util.types.isBigInt64Array() Demo Example // Importing the util module const util = require('util'); // Functions to be passed as parameter // of utiltypes.isBigInt64Array() method var arr = new BigInt64Array(); // Passing BigInt64 Array as input value console.log(util.types.isBigInt64Array(arr));
输出
C:\home
ode>> node isBigInt64Array.js true
示例 2
// util.types.isBigInt64Array() Demo Example // Importing the util module const util = require('util'); // Functions to be passed as parameter // of utiltypes.isBigInt64Array() method var arr = new BigInt64Array(); // Passing BigInt64 Array as input value console.log("1." + util.types.isBigInt64Array(arr)); // Passing BigInt64 Array prototype console.log("2." + util.types.isBigInt64Array(BigInt64Array.prototype)); // Defining a typedArray const typedArray = new Int8Array(8); // Passing Typed array to check console.log("3." + util.types.isBigInt64Array(typedArray));
输出
C:\home
ode>> node isBigInt64Array.js 1. true 2. false 3. false
广告