Merge pull request #169 from kitiya/patch-3

Update solution.md
This commit is contained in:
Ilya Kantor 2017-09-08 18:20:54 +02:00 committed by GitHub
commit 34c05e2578

View file

@ -28,6 +28,6 @@ Note that `63.5` has no precision loss at all. That's because the decimal part `
```js run
alert( Math.round(6.35 * 10) / 10); // 6.35 -> 63.5 -> 63(rounded) -> 6.3
alert( Math.round(6.35 * 10) / 10); // 6.35 -> 63.5 -> 64(rounded) -> 6.4
```