Skip to content

Commit 3defacc

Browse files
committed
up
1 parent 5372c18 commit 3defacc

File tree

314 files changed

+1676
-1619
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

314 files changed

+1676
-1619
lines changed

1-js/4-object-basics/01-object/article.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ As we see from the code, the assignment to a primitive `5` is ignored. If we wan
226226
````
227227

228228

229-
## Property name shorthand
229+
## Property value shorthand
230230

231231
In real code we often use existing variables as values for property names.
232232

@@ -270,7 +270,6 @@ let user = {
270270
};
271271
```
272272

273-
274273
## Existance check
275274

276275
A notable objects feature is that it's possible to access any property. There will be no error if the property doesn't exist! Accessing a non-existing property just returns `undefined`. It provides a very common way to test whether the property exists -- to get it and compare vs undefined:

1-js/4-object-basics/03-object-methods/2-check-syntax/solution.md renamed to 1-js/4-object-basics/04-object-methods/2-check-syntax/solution.md

File renamed without changes.

1-js/4-object-basics/03-object-methods/2-check-syntax/task.md renamed to 1-js/4-object-basics/04-object-methods/2-check-syntax/task.md

File renamed without changes.

1-js/4-object-basics/03-object-methods/3-why-this/solution.md renamed to 1-js/4-object-basics/04-object-methods/3-why-this/solution.md

File renamed without changes.

1-js/4-object-basics/03-object-methods/3-why-this/task.md renamed to 1-js/4-object-basics/04-object-methods/3-why-this/task.md

File renamed without changes.

1-js/4-object-basics/03-object-methods/4-object-property-this/solution.md renamed to 1-js/4-object-basics/04-object-methods/4-object-property-this/solution.md

File renamed without changes.

1-js/4-object-basics/03-object-methods/4-object-property-this/task.md renamed to 1-js/4-object-basics/04-object-methods/4-object-property-this/task.md

File renamed without changes.

1-js/4-object-basics/03-object-methods/7-calculator/_js.view/solution.js renamed to 1-js/4-object-basics/04-object-methods/7-calculator/_js.view/solution.js

File renamed without changes.

1-js/4-object-basics/03-object-methods/7-calculator/_js.view/test.js renamed to 1-js/4-object-basics/04-object-methods/7-calculator/_js.view/test.js

File renamed without changes.

0 commit comments

Comments
 (0)