type는 number, string, null, undefined, boolean 등이 있다.
const a = 2
2는 number type이다.
const a = "2"
혹은
const b = "type Study" 라면,
a,b는 string type이다.
const arr = null;
음...잘 모르겠다....
const arr = [1,2,3];
console.log(arr[10]); ---> 인덱스 10인 곳에 값이 없으므로 undefined
const a = true
const b = false
true, false 두 type이 있다.
const a = true; ---> true 타입
const a = "true"; ---> string 타임