Skip to content

Commit

Permalink
docs(implic-coercion): Add bigint type
Browse files Browse the repository at this point in the history
  • Loading branch information
1ilsang committed Nov 26, 2023
1 parent 5ab1d3f commit 5f1b76d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/blog/_posts/js/implicit-coercion.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ undefined == null // true
자바스크립트는 6가지 원시 타입과 `Object` 라는 객체 타입, **총 7가지 타입** 이 존재한다.

> ES2020에서 원시 타입에 bigint 타입이 추가되었기 때문에 이제는 총 8가지 타입이 존재하게 되었다.
기본적으로 암묵적 형변환은 모두 "원시 타입(**문자열, 숫자, 불리언**)"을 기준으로 하게 된다. 원시타입이 객체타입으로 암묵적 형변환이 되는 케이스는 존재하지 않는다.

### 암묵적 형변환은 언제 일어나나요?
Expand Down

0 comments on commit 5f1b76d

Please sign in to comment.