Last Updated : 03 Sep, 2024
Lodash _.isArguments() method checks if the value is likely an arguments object.
Syntax:_.isArguments(value);Parameters:
Example 1: In this example, we are getting true as output because the given value is an argument object.
javascript
// Requiring the lodash library
const _ = require('lodash');
// Using the _.isArguments() method
let argu = _.isArguments(function () { return arguments; }());
// Printing the output
console.log(argu);
Output:
true
Example 2: In this example, we are getting false as output because the given value is not an argument object.
javascript
// Requiring the lodash library
const _ = require('lodash');
// Original array
let object = _.isArguments([7, 7, 8]);
// Using the _.isArguments() method
let argu = _.isArguments(object);
// Printing the output
console.log(argu);
Output:
false
Note: This code will not work in normal JavaScript because it requires the library lodash to be installed.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4