Node.js examples for Number:Format
Convert number to money
Number.prototype.moneyString = function() { return "$" + this.toFixed(2); }