From 00cc80240aed755567bf13de57bd7f9f3e6d9fd6 Mon Sep 17 00:00:00 2001 From: Ben Pyrik Date: Sat, 25 Apr 2020 19:16:45 -0500 Subject: [PATCH] Remove unnecessary "to" --- 6-data-storage/02-localstorage/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-data-storage/02-localstorage/article.md b/6-data-storage/02-localstorage/article.md index da52ba56..3ba9aa97 100644 --- a/6-data-storage/02-localstorage/article.md +++ b/6-data-storage/02-localstorage/article.md @@ -19,7 +19,7 @@ Both storage objects provide same methods and properties: - `key(index)` -- get the key on a given position. - `length` -- the number of stored items. -As you can see, it's like a `Map` collection (`setItem/getItem/removeItem`), but also allows to access by index with `key(index)`. +As you can see, it's like a `Map` collection (`setItem/getItem/removeItem`), but also allows access by index with `key(index)`. Let's see how it works.