Underscore.JS - isString method
Syntax
_.isString(object)
isString method checks if object is a string. See the below example −
Example
var _ = require('underscore');
//Example 1: Check if argument passed is a string
console.log(_.isString('1'));
//Example 2: Check if argument passed is a string
console.log(_.isString(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