Skip to content

Commit

Permalink
[참조에 의한 객체 복사]오타 수정(#1577)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssujinchoi authored and Violet-Bora-Lee committed Sep 18, 2022
1 parent 75bb3e8 commit 31d5a0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 1-js/04-object-basics/02-object-copy/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let phrase = message;

![](variable-copy-value.svg)

그런데 객체의 동작방식은 이와 다릅니다.
그런데 객체의 동작 방식은 이와 다릅니다.

**변수엔 객체가 그대로 저장되는 것이 아니라, 객체가 저장되어있는 '메모리 주소'인 객체에 대한 '참조 값'이 저장됩니다.**

Expand Down Expand Up @@ -123,7 +123,7 @@ alert( user.name ); // 기존 객체에는 여전히 John이 있습니다.
[Object.assign](mdn:js/Object/assign)를 사용하는 방법도 있습니다.
문법과 동작방식은 다음과 같습니다.
문법과 동작 방식은 다음과 같습니다.
```js
Object.assign(dest, [src1, src2, src3...])
Expand Down

0 comments on commit 31d5a0c

Please sign in to comment.