no need to "js run"

there is nothing to see when code is run. So run button for code can create some confusion.
This commit is contained in:
Mustafa Kemal Tuna 2021-01-13 03:02:57 +03:00 committed by GitHub
parent eb3b360dc3
commit 85fe7b8e5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,7 +109,7 @@ There will be no conflict between our and their identifiers, because symbols are
...But if we used a string `"id"` instead of a symbol for the same purpose, then there *would* be a conflict: ...But if we used a string `"id"` instead of a symbol for the same purpose, then there *would* be a conflict:
```js run ```js
let user = { name: "John" }; let user = { name: "John" };
// Our script uses "id" property // Our script uses "id" property