Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update table-of-contents.md #441

Merged
merged 2 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/javascript/core-javascript/chapter-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ obj2.c = 20;
a !== b;
obj === obj2;
```
- 자바스크립트는 사실 어떤 데이터 타입ㅇ이든 별수에 할당하기 위해서는 주솟값을 복사해야 하기 때문에, 엄밀히 따지면 모든 데이터 타입은 참조형 데이터일 수밖에 없다.
- 자바스크립트는 사실 어떤 데이터 타입이든 별수에 할당하기 위해서는 주솟값을 복사해야 하기 때문에, 엄밀히 따지면 모든 데이터 타입은 참조형 데이터일 수밖에 없다.
- 다만 기본형은 주솟값을 복사하는 과정이 한 번만 이뤄지고, 참조형은 한 단계를 더 거치게 된다는 차이가 있다는 것이다.

```js
Expand Down
2 changes: 1 addition & 1 deletion docs/javascript/table-of-contents.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ sidebar_position: 1
- [도서 정보](http://www.yes24.com/Product/Goods/33211518)
- 저: 래리 스펜서, 세스 리처즈

### 👉 [You Don’t Know JS 타입과 문법, 스코프와 클로저](/docs/javascript/you-dont-know-js/table-of-contents)
### 👉 [You Don’t Know JS : 타입과 문법, 스코프와 클로저](/docs/javascript/you-dont-know-js/table-of-contents)
- [도서 정보](http://www.yes24.com/Product/Goods/43219481)
- 저: 카일 심슨
Loading