Skip to content

Commit 5d7f993

Browse files
authored
correct spell error
1 parent 04b2fcf commit 5d7f993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/05-array-methods/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ The methods [arr.indexOf](mdn:js/Array/indexOf), [arr.lastIndexOf](mdn:js/Array/
213213

214214
- `arr.indexOf(item, from)` looks for `item` starting from index `from`, and returns the index where it was found, otheriwse `-1`.
215215
- `arr.lastIndexOf(item, from)` -- same, but looks from right to left.
216-
- `arr.includes(item, from)` -- looks for `item` starting fron index `from`, returns `true` if found.
216+
- `arr.includes(item, from)` -- looks for `item` starting from index `from`, returns `true` if found.
217217

218218
For instance:
219219

0 commit comments

Comments
 (0)