Underscore.JS - isArguments method



Syntax

_.isArguments(object)

isArguments method checks if object is an Argument object. See the below example −

Example

var _ = require('underscore');

//Example 1: Check if argument passed is an object
(function(){ console.log(_.isArguments(arguments)); })(1, 2);

//Example 2: Check if argument passed is an object
console.log(_.isArguments([1]));

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

true
false
underscorejs_comparing_objects.htm
Advertisements