From 98b311643cfcb3db1f9df9eefd2afa60a500bf2b Mon Sep 17 00:00:00 2001 From: samrat karki <59047039+samrat014@users.noreply.github.com> Date: Sat, 3 Sep 2022 01:48:05 +0545 Subject: [PATCH] Update 06_day_loops.md --- 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..a59f5f1 100644 --- a/06_Day_Loops/06_day_loops.md +++ b/06_Day_Loops/06_day_loops.md @@ -151,7 +151,7 @@ do { ### for of loop -We use for of loop for arrays. It is very hand way to iterate through an array if we are not interested in the index of each element in the array. +We use for of loop for arrays. It is very handy way to iterate through an array if we are not interested in the index of each element in the array. ```js for (const element of arr) {