Merge pull request #563 from dagolinuxoid/patch-4

fixSentence
This commit is contained in:
Ilya Kantor 2018-11-03 19:26:06 +03:00 committed by GitHub
commit 9d76f97c2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,7 +75,7 @@ user[id] = "ID Value";
alert( user[id] ); // we can access the data using the symbol as the key alert( user[id] ); // we can access the data using the symbol as the key
``` ```
What's the benefit over using `Symbol("id")` over a string `"id"`? What's the benefit of using `Symbol("id")` over a string `"id"`?
Let's make the example a bit deeper to see that. Let's make the example a bit deeper to see that.