Node.js examples for Date:Date Format
Get Date H;m string
/**/*from www .ja v a 2s . c om*/ * Get H;m string */ getHoursMins: function(){ return new Date().toTimeString().replace(/.*(\d{2}:\d{2}:\d{2}).*/, "$1").substr(0, 5); },