From 5d7f993f74b314b5cde5285061106d467fa4af71 Mon Sep 17 00:00:00 2001 From: Himanshu Taneja <27himanshu@users.noreply.github.com> Date: Mon, 1 May 2017 21:06:30 -0500 Subject: [PATCH] correct spell error --- 1-js/05-data-types/05-array-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/05-array-methods/article.md b/1-js/05-data-types/05-array-methods/article.md index e0b70a6a..3ce35638 100644 --- a/1-js/05-data-types/05-array-methods/article.md +++ b/1-js/05-data-types/05-array-methods/article.md @@ -213,7 +213,7 @@ The methods [arr.indexOf](mdn:js/Array/indexOf), [arr.lastIndexOf](mdn:js/Array/ - `arr.indexOf(item, from)` looks for `item` starting from index `from`, and returns the index where it was found, otheriwse `-1`. - `arr.lastIndexOf(item, from)` -- same, but looks from right to left. -- `arr.includes(item, from)` -- looks for `item` starting fron index `from`, returns `true` if found. +- `arr.includes(item, from)` -- looks for `item` starting from index `from`, returns `true` if found. For instance: