Created
December 12, 2022 02:13
-
-
Save hoyangtsai/b66cd4b3b34e801ac746cf9a0f80e831 to your computer and use it in GitHub Desktop.
currency format with Intl.NumberFormat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const amount = new Intl.NumberFormat('id-ID', { | |
style: 'currency', | |
currency: 'IDR' | |
}).format("15000"); | |
console.log(amount); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment