fixed for of loop description

pull/846/head
Henry Hart Alegrado 2 years ago
parent 55d8e3dbc0
commit 305c4c7665

@ -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 a 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