-2

I am trying to change the type of the number but I don't know how and what keyword to search:

I would like to change the basic type of number in html from:

2000000 -> 2.000.000

And it will show on the screen the number have the dot in between.enter image description here

ps: the input is number, do I need to use Javascript to convert it to string and add to html?

Tony Bui
  • 1,231
  • 7
  • 18

1 Answers1

1

You need to use JavaScript to do it.

const separateNumber = (n) => {
  return String(n).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1.")
}