From 1575b8a212f8b1232d9a30e28a9ce915992ae2e8 Mon Sep 17 00:00:00 2001 From: digital-bw <113027504+digital-bw@users.noreply.github.com> Date: Sat, 24 Sep 2022 19:41:33 +0600 Subject: [PATCH] fix small typo --- 1-js/05-data-types/02-number/2-why-rounded-down/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/02-number/2-why-rounded-down/solution.md b/1-js/05-data-types/02-number/2-why-rounded-down/solution.md index a17a4671..4bcd7451 100644 --- a/1-js/05-data-types/02-number/2-why-rounded-down/solution.md +++ b/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 ` ```js run -alert( Math.round(6.35 * 10) / 10); // 6.35 -> 63.5 -> 64(rounded) -> 6.4 +alert( Math.round(6.35 * 10) / 10 ); // 6.35 -> 63.5 -> 64(rounded) -> 6.4 ```