We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30fc462 commit 1ce5947Copy full SHA for 1ce5947
1-js/04-object-basics/04-object-methods/4-object-property-this/solution.md
@@ -14,7 +14,7 @@ let user = makeUser();
14
alert( user.ref.name ); // Error: Cannot read property 'name' of undefined
15
```
16
17
-Jest to spowodowane tym, że reguły ustalające wartość `this` nie uwzględniają definicji obiektu. Znaczenie ma tylko moment wywołania.
+Jest to spowodowane tym, że reguły ustalające wartość `this` nie uwzględniają faktu istnienia obiektu. Znaczenie ma tylko moment wywołania.
18
19
Wartość `this` wewnątrz `makeUser()` jest `undefined`, ponieważ jest wywołana jako funkcja, a nie jako metoda wywołana za pomocą "kropki".
20
0 commit comments