Underscore.JS - isObject method



Syntax

_.isObject(argument)

isObject method checks if argument is an object or not. Object and arrays are objects. See the below example −

Example

var _ = require('underscore');

//Example 1: Check if argument passed is an object
var result = _.isObject({ name : 'Sam'});
console.log(result);

//Example 2: Check if argument passed is an object
result = _.isObject(1);
console.log(result);

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