Update article.md

Minor edit around example code: " should be around id
This commit is contained in:
Shubham Maurya 2020-07-05 23:18:37 +05:30 committed by GitHub
parent 445bda3980
commit d9ab352ed8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,7 +133,7 @@ let id = Symbol("id");
let user = {
name: "John",
*!*
[id]: 123 // not "id: 123"
[id]: 123 // not "id": 123
*/!*
};
```