Javascript String toCurrency(decimalPlaces)

Description

Javascript String toCurrency(decimalPlaces)

String.prototype.toCurrency = function(decimalPlaces){
  return parseFloat(this).toCurrency();
}



PreviousNext

Related