Update 06_day_loops.md

pull/493/head
samrat karki 3 years ago committed by GitHub
parent 1e68a81fe9
commit 98b311643c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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) {

Loading…
Cancel
Save