wrkbrs
[JavaScript] typeof 연산자 본문
*
javascript typeof 연산자
: typeof 연산자는 형식 정보를 문자열로 반환한다. typeof는 "number", "string", "boolean", "object", "function", "undefined"의 6가지 값 반환 가능 ( 괄호는 선택사항 )
typeof(temp) != 'undefined' / typeof temp === 'undefined'
'JS' 카테고리의 다른 글
[JavaScript] typeof 와 instanceof의 차이, 타입 또는 클래스 구분하기 (0) | 2019.01.13 |
---|---|
[JavaScript] jsonObject, jsonArray, JSON.parse(), JSON.stringify() 메서드 사용 (0) | 2019.01.12 |
[Javascript] 윈도우 객체 정리 (0) | 2019.01.06 |
[Javascript] getElementById 속성 종류 (0) | 2018.12.21 |
[Javascript] document.getElementById("abc").innerHTML="" 사용법 (0) | 2018.12.21 |