jquery how to show large number currency code example
Example 1: how to format money as currency string
(12345.67).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
Example 2: js format urcurency
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
});
formatter.format(2500);
Example 3: jquery number format thousand k
function kFormatter(num) {
return Math.abs(num) > 999 ? Math.sign(num)*((Math.abs(num)/1000).toFixed(1)) + 'k' : Math.sign(num)*Math.abs(num)
}
console.log(kFormatter(1200));
console.log(kFormatter(-1200));
console.log(kFormatter(900));
console.log(kFormatter(-900));