0

我需要格式号(123456)123 456

我用了:

(123456).format({groups: ' '}) //result 123,456
4

1 回答 1

0

group不是groups

console.log( (123456789).format({
    group: " "
}) );

JSFiddle

于 2013-06-10T15:15:15.233 回答