This commit is contained in:
Ilya Kantor 2020-02-20 09:42:25 +00:00
parent 016213e445
commit 3e93486425

View file

@ -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 keeps elements order and allows to access by index with `key(index)`.
As you can see, it's like a `Map` collection (`setItem/getItem/removeItem`), but also allows to access by index with `key(index)`.
Let's see how it works.