Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- slice/splice/split
- 자바스크립트#조건문#문자열
- CSS
- removeCookie
- redux상태유지
- User Flow
- 노드교과서
- 내장고차함수
- UI
- react
- variable#function
- https://dasima.xyz/%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EC%A0%9C%EA%B3%B1-math-pow-%EA%B3%84%EC%82%B0/
- Beesbeesbees
- children vs childrenNodes
- 자바스크립트#JS#var#let#const#undefined#null
- UX
- 헷갈린다~
- https://lo-victoria.com/introduction-to-redux-toolkit-for-beginners
- cmarket
- for~in/for~of
- dom
- https://www.daleseo.com/js-array-slice-splice/
- toString#String
- 자바스크립트
- JS#3일차달리자#초반인데#시간금방~
- js
- 자바스크립트#JS#slice#splice
- ㄷㅌ
- https://developer-talk.tistory.com/299
- @redux-toolkit
Archives
- Today
- Total
목록자바스크립트#JS#var#let#const#undefined#null (1)
Daily Front_Minhhk
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/Euy45/btrPp3F4bBl/IKec9P3oDok8gBwVK6kykK/img.png)
undefined와 null의 차이점 undefined은 변수를 선언하고 값을 할당하지 않은 상태, null은 변수를 선언하고 빈 값을 할당한 상태(빈 객체)이다. 즉, undefined는 자료형이 없는 상태이다. 따라서 typeof를 통해 자료형을 확인해보면 null은 object로, undefined는 undefined가 출력되는 것을 확인할 수 있다. typeof null // 'object' typeof undefined // 'undefined' null === undefined // false null == undefined // true null === null // true null == null // true !null // true isNaN(1 + null) // false isNaN..
Code개발일지
2022. 10. 24. 01:35