Update article.md (LocalStorage) (#975)

Update article.md (LocalStorage)
This commit is contained in:
Alexey Pyltsyn 2019-05-10 15:14:35 +03:00 committed by GitHub
commit 637e8c11fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -122,7 +122,7 @@ The latter works, because `Object.keys` only returns the keys that belong to the
Please note that both key and value must be strings.
If we any other type, like a number, or an object, it gets converted to string automatically:
If were any other type, like a number, or an object, it gets converted to string automatically:
```js run
sessionStorage.user = {name: "John"};