We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ec1848 commit db1c21fCopy full SHA for db1c21f
1 file changed
1-js/04-object-basics/02-object-copy/article.md
@@ -83,6 +83,8 @@ alert(*!*user.name*/!*); // 'Pete'가 출력됨. 'user' 참조 값을 이용해
83
84
두 변수가 같은 객체를 참조하는 예시를 살펴봅시다. 일치·동등 비교 모두에서 참이 반환됩니다.
85
86
+예를 들어 아래 코드에서 `a`와 `b`는 같은 객체를 참조하므로 동등하다고 평가됩니다.
87
+
88
```js run
89
let a = {};
90
let b = a; // 참조에 의한 복사
0 commit comments