From 1467c075639c8733411f6ff1a8e86711697eab7e Mon Sep 17 00:00:00 2001 From: Hongsreng-P Date: Wed, 5 Jul 2023 10:45:52 +0700 Subject: [PATCH] fixed typo on day 6 --- 06_Day_Loops/06_day_loops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06_Day_Loops/06_day_loops.md b/06_Day_Loops/06_day_loops.md index c093495..7482426 100644 --- a/06_Day_Loops/06_day_loops.md +++ b/06_Day_Loops/06_day_loops.md @@ -180,7 +180,7 @@ let sum = 0 for (const num of numbers) { sum = sum + num // can be also shorten like this, sum += num - // after this we will use the shorter synthax(+=, -=, *=, /= etc) + // after this we will use the shorter syntax(+=, -=, *=, /= etc) } console.log(sum) // 15