Javascript Date getAMPM()

Description

Javascript Date getAMPM()

Date.prototype.getAMPM = function() { return (this.getHours() < 12) ? "" : ""; }



PreviousNext

Related