Skip to content

Commit db1c21f

Browse files
committed
docs: 참조에 의한 비교 번역 누락 문장 번역
1 parent 7ec1848 commit db1c21f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

1-js/04-object-basics/02-object-copy/article.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ alert(*!*user.name*/!*); // 'Pete'가 출력됨. 'user' 참조 값을 이용해
8383
8484
두 변수가 같은 객체를 참조하는 예시를 살펴봅시다. 일치·동등 비교 모두에서 참이 반환됩니다.
8585
86+
예를 들어 아래 코드에서 `a``b`는 같은 객체를 참조하므로 동등하다고 평가됩니다.
87+
8688
```js run
8789
let a = {};
8890
let b = a; // 참조에 의한 복사

0 commit comments

Comments
 (0)