공부하자/Javascript
[자바스크립트] 데이터 타입 확인 방법
YoBot
2018. 12. 20. 11:58
[자바스크립트] 데이터 타입 확인 방법
데이터 타입 종류
- Nudefined : 변수 선언시 초기값이 없으면 자동할당 된다.
- Null : 빈 객체를 가리키는 포인터이다.
- Boolean : [true(1), false(0)] 둘중하나의 값을 리턴한다.
- 숫자 : [number] 값을 리턴한다.
- 문자열 : [string] 값을 리턴한다.
- 객체 : [object] 값을 리턴한다.
Typeof 연산자
데이터 확인 연산자이다.
사용방법
1
2
3
4
|
var message = [{"date":"2018-12-19 18:00:00","name":"USDKRW=X","rate":1124.97}];
console.log(typeof message); // "object"
console.log(typeof(message)); // "object"
console.log(typeof 5); // "number"
|
cs |