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 528001f commit c2246d4Copy full SHA for c2246d4
1-js/04-object-basics/04-object-methods/4-object-property-this/task.md
@@ -2,11 +2,11 @@ importance: 5
2
3
---
4
5
-# Using "this" in object literal
+# "this" w literałach obiektowych
6
7
-Here the function `makeUser` returns an object.
+Poniższa funkcja `makeUser` zwraca obiekt.
8
9
-What is the result of accessing its `ref`? Why?
+Jaki będzie rezultat dostępu do jego `ref` ? I dlaczego?
10
11
```js
12
function makeUser() {
@@ -18,6 +18,6 @@ function makeUser() {
18
19
let user = makeUser();
20
21
-alert( user.ref.name ); // What's the result?
+alert( user.ref.name ); // Jaki będzie wynik?
22
```
23
0 commit comments