update snippet toDecimalMark, add test for toDecimalMark

This commit is contained in:
Stefan Feješ
2018-01-10 12:42:11 +01:00
parent 86d592a76c
commit 5af41967c5
2 changed files with 2 additions and 1 deletions

View File

@ -7,5 +7,5 @@ const toDecimalMark = num => num.toLocaleString('en-US');
```
```js
toDecimalMark(12305030388.9087); // "12,305,030,388.9087"
toDecimalMark(12305030388.9087); // "12,305,030,388.909"
```