Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaScript culture sensitive currency formatting

How can i format currency related data in a manner that is culture aware in JavaScript?

like image 447
kjv Avatar asked Sep 09 '08 10:09

kjv


1 Answers

So I know this is an old question, but incase anyone else shows up looking for similar answers, in modern JavaScript you can use

new Intl.NumberFormat('de-DE', { style: 'currency', currency: 'EUR' }).format(number)

For more info here is the reference doc.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat

like image 184
Hans Avatar answered Sep 21 '22 19:09

Hans