Javascript Date isBissexto()

Description

Javascript Date isBissexto()


Date.prototype.isBissexto = function(){
  var ano = this.getFullYear();
  return (ano % 4 === 0 && ano % 100 !== 0 || ano % 400 ===0);
}



PreviousNext

Related