Skip to content

Commit c2246d4

Browse files
authored
translated
1 parent 528001f commit c2246d4

File tree

1 file changed

+4
-4
lines changed
  • 1-js/04-object-basics/04-object-methods/4-object-property-this

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ importance: 5
22

33
---
44

5-
# Using "this" in object literal
5+
# "this" w literałach obiektowych
66

7-
Here the function `makeUser` returns an object.
7+
Poniższa funkcja `makeUser` zwraca obiekt.
88

9-
What is the result of accessing its `ref`? Why?
9+
Jaki będzie rezultat dostępu do jego `ref` ? I dlaczego?
1010

1111
```js
1212
function makeUser() {
@@ -18,6 +18,6 @@ function makeUser() {
1818

1919
let user = makeUser();
2020

21-
alert( user.ref.name ); // What's the result?
21+
alert( user.ref.name ); // Jaki będzie wynik?
2222
```
2323

0 commit comments

Comments
 (0)