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