Javascript String trimCurrency()
trimCurrency()
String.prototype.trimCurrency = function () { return Number(this.replace('$', '').replace(',', '')); }