Contact: aviboots(AT)netvision.net.il
39,900 questions
51,831 answers
573 users
let num = 94820613; let usd = num.toLocaleString('en-US', { style: 'currency', currency: 'USD', }); console.log(usd); /* run: "$94,820,613.00" */
var formatter = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', }); let num = 94820613; usd = formatter.format(num); console.log(usd); /* run: "$94,820,613.00" */