null과 undifined

아름·2022년 2월 15일
1

1)type

type는 number, string, null, undefined, boolean 등이 있다.

2)type 종류는 다음와 같다.

2-1 number type

const a = 2
2는 number type이다.

2-2 string type

const a = "2"
혹은
const b = "type Study" 라면,
a,b는 string type이다.

2-3 null

const arr = null;
음...잘 모르겠다....

2-4 undefined

const arr = [1,2,3];
console.log(arr[10]); ---> 인덱스 10인 곳에 값이 없으므로 undefined

2-5 boolean

const a = true
const b = false
true, false 두 type이 있다.

참고로...

const a = true; ---> true 타입
const a = "true"; ---> string 타임

profile
공부하쟈

0개의 댓글