Blog

Projects

Stacks

Snippets

About

Format currency using Number formatter

Format currency using Intl

const formatter = new Intl.NumberFormat("en-IN", {
style: "currency",
currency: "INR",
});
formatter.format(1234); // ₹1,234.00