📜  Lodash _.isArguments() 方法

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

Lodash _.isArguments() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、语言、函数、对象、数字等。

_.isArguments() 方法检查 value 是否可能是 arguments 对象。

句法:

_.isArguments(value)

参数:此方法接受上面提到的单个参数,如下所述:

  • value:它是用于检查值的函数。

返回值:如果 value 是 arguments 对象,则此方法返回 true,否则返回 false。

示例一:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Using the _.isArguments() method
let argu = _.isArguments(function() 
    { return arguments; } ());
  
// Printing the output 
console.log(argu);

输出:

true

示例 2:

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var object = _.isArguments([ 7, 7, 8 ]);
  
// Using the _.isArguments() method
let argu = _.isArguments();
  
// Printing the output 
console.log(argu);

输出:

false

注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。