i've this simple function:
Chrome, Firefox, IE:
Number(1000000).toLocaleString()
"1 000 000" // in french system, the space is the separator instead of the comma
Opera, Maxthon:
Number(1000000).toLocaleString()
"1000000"
why Opera and Maxthon cant format it? they support this method but dont execute it in the right way?
is there any toLocaleString()
replacement?