Skip to content

Commit 24fcd39

Browse files
authored
Update article.md
1 parent 2a0516d commit 24fcd39

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
@@ -229,7 +229,7 @@ alert( arr.includes(1) ); // true
229229

230230
Note that the methods use `===` comparison. So, if we look for `false`, it finds exactly `false` and not the zero.
231231

232-
If we wan to check for inclusion, and don't want to know the exact index, then `arr.includes` is preferred.
232+
If we want to check for inclusion, and don't want to know the exact index, then `arr.includes` is preferred.
233233

234234

235235
### find and findIndex

0 commit comments

Comments
 (0)