I'm trying to format a price using Intl.NumberFormat
(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat) in Norwegian Krone.
The instruction I'm using is:
console.log(new Intl.NumberFormat('no-NO', { style: 'currency', currency: 'NOK' }).format(123));
But as you can see, the output is "123,00 NOK" while I was expecting "123,00 kr". Have anyone encountered the same problem ?
Thanks for your help