I format a number like this:

function pointToComma(number) {
  number = Number(number).toLocaleString();
  return number;
}

As w3schools (http://www.w3schools.com/jsref/jsref_tolocalestring.asp) states the function toLocalStrin() convert a Date object to a string, using locale conventions.

I want to use this function to output the number into a german format. This means commas instead of points for decimals and points to separate thousands. I need the german format in any case. So is there a way to set the local settings fix in that example?

有帮助吗?

解决方案

Solved it:

.toLocaleString('de-DE')

See more options

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top