Trandent API
POST
COMMUNITY
=============================================================
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
numberWithCommas(1000000)
-> return 100,0000