cagartner
3/13/2017 - 6:05 PM

currency format in js | formato moeda em js

currency format in js | formato moeda em js

// Font: https://blog.tompawlak.org/number-currency-formatting-javascript

function currencyFormat (num) {
    return "$" + num.toFixed(2).replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1,")
}

console.info(currencyFormat(2665));   // $2,665.00
console.info(currencyFormat(102665)); // $102,665.00