Skip to content

Commit 960da90

Browse files
authored
Merge pull request lydiahallie#558 from hubiwibe/master
✏️ Fix typo in q12 answer
2 parents c2ffa61 + 7c6430b commit 960da90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ko-KR/README-ko_KR.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ console.log(sarah);
417417

418418
`sarah`에게 `new` 키워드를 사용하지 않았어요. `new`를 사용한 경우, 이것은 우리가 만든 새로운 빈 객체를 참조해요. 그러나, `new`를 추가하지 않으면 **전역변수**를 참조해요!
419419

420-
`this.firstName``"Sarah"`이고, `this.lastName``"Smith"`이리고 말했었어요. (그렇지만) 우리는 실제로 한 일은 `global.firstName = 'Sarah'` 그리고 `global.lastName = 'Smith'`를 정의하는 것이에요. `sarah` 자체는 `undefined`로 남아있어요. 따라서 `Person`함수의 값을 리턴하지 않아요.
420+
`this.firstName``"Sarah"`이고, `this.lastName``"Smith"`이라고 말했었어요. (그렇지만) 우리가 실제로 한 일은 `global.firstName = 'Sarah'` 그리고 `global.lastName = 'Smith'`를 정의하는 것이에요. `sarah` 자체는 `undefined`로 남아있어요. 따라서 `Person`함수의 값을 리턴하지 않아요.
421421

422422
</p>
423423
</details>
@@ -2802,8 +2802,8 @@ import * as data from "./module"
28022802
console.log(data)
28032803
```
28042804

2805-
- A: `{ default: function default(), name: "Lydia" }`
2806-
- B: `{ default: function default() }`
2805+
- A: `{ default: [Function (anonymous)], name: "Lydia" }`
2806+
- B: `{ default: [Function (anonymous)] }`
28072807
- C: `{ default: "Hello world", name: "Lydia" }`
28082808
- D: Global object of `module.js`
28092809

0 commit comments

Comments
 (0)