참고 강의
데이터의 분류 기준
ex. 소주는 소주잔에, 맥주는 맥주잔에
let string = "나는 문자"; let number = "나는 숫자"; let boolean = false; let undef; let noValue = null; console.log(typeof string + " : " + string); console.log(typeof number + " : " + number); console.log(typeof boolean + " : " + boolean); console.log(typeof undef + " : " + undef); console.log(typeof noValue + " : " + noValue);
type of
를 통해 변수의 타입을 확인할 수 있습니다.
오브젝트는 일반 데이터 타입이 아닌
배열이나 리스트, 딕셔너리와 같은 형태를 의미합니다.