Javascript Number round5()

Description

Javascript Number round5()

Number.prototype.round5 = function() {
  return ((this)- (this % 5));
}



PreviousNext

Related