Blog
Projects
Stacks
Snippets
About
Format currency using Intlconst formatter = new Intl.NumberFormat("en-IN", { style: "currency", currency: "INR",});formatter.format(1234); // ₹1,234.00
Format currency using Intl
const formatter = new Intl.NumberFormat("en-IN", { style: "currency", currency: "INR",});formatter.format(1234); // ₹1,234.00