function toDate(str){ return Date.prototype.setHours.apply(new Date, str.split(':')) } alert(toDate('2:15') > new Date())