Skip to content

Commit c1b46ea

Browse files
committed
docs: js/04-object-basics/03-garbage-collection 충돌 해결
1 parent abc8aad commit c1b46ea

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

  • 1-js/04-object-basics/03-garbage-collection

1-js/04-object-basics/03-garbage-collection/article.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,7 @@ let admin = user;
7474
user = null;
7575
```
7676

77-
<<<<<<< HEAD
7877
전역 변수 `admin`을 통하면 여전히 객체 John에 접근할 수 있기 때문에 John은 메모리에서 삭제되지 않습니다. 이 상태에서 `admin`을 다른 값(null 등)으로 덮어쓰면 John은 메모리에서 삭제될 수 있습니다.
79-
=======
80-
...Then the object is still reachable via `admin` global variable, so it must stay in memory. If we overwrite `admin` too, then it can be removed.
81-
>>>>>>> upstream/master
8278

8379
## 연결된 객체
8480

0 commit comments

Comments
 (0)