We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 144a2fe commit 0c86e0cCopy full SHA for 0c86e0c
1-js/05-data-types/02-number/2-why-rounded-down/solution.md
@@ -28,6 +28,6 @@ Note that `63.5` has no precision loss at all. That's because the decimal part `
28
29
30
```js run
31
-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
32
```
33
0 commit comments