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 | 29 | 30 | 31 |
Tags
- ts 기초 설정
- Interface vs Type Alias
- Typescript Study
- 인터페이스 타입 비교
- Blob?
- ts.config.json
- 타입스크립트 설정값
- 이미지 서버에 업로드
- JS 이미지 미리보기
- 인터페이스 vs 타입
- 공부
- firebase server
- Blob 청크
- JS Blob
- TypeScript
- Blob이란?
- ts 설정값
- ts 프로젝트 설정 추천
- ts 필수 설정
- ts 설정
- TypeScript Deep Dive
- 타입스크립트 필수 설정
- TypeScript Undefined Null
- Typescript Handbook
- why use interface?
- TypeScript config
- Null vs Undefined
- Blob 사용하는 이유
- 프론트 이미지 업로드
- ts.config.json default setting
Archives
- Today
- Total
목록TypeScript Undefined Null (1)
RPG처럼 웹 개발하기

용어설명 1. undefiend 어떠한 값도 할당되지 않아 자료형이 정해지지 않은 상태입니다. 2. null 자료형이 정해진(defined) 상태입니다. null 값이 할당된 상태입니다. Null 과 Undefined 코드로 비교하기 console.log(null == null); // true console.log(undefined == undefined); // true console.log(null == undefined); // true console.log(null === null); // true console.log(undefined === undefined); // true console.log(null === undefined); // false null == undefined 결과가 t..
웹 개발
2022. 11. 24. 20:00