본문 바로가기
CodeStates/└ JavaScript(Pre)

타입 구분

by Dream_World 2020. 6. 18.

/* ======================*/
// 타입 구분

typeof '문자열'
"string"
typeof 123
"number"
typeof [1, 2, 3]
"object"
typeof true
"boolean"
typeof undefined
"undefined"

/* ======================*/
// 배열 타입 구분

Array.isArray('문자열')
false
Array.isArray(123)
false
Array.isArray([1,2,3])
true
Array.isArray([])
true​

'CodeStates > └ JavaScript(Pre)' 카테고리의 다른 글

객체  (0) 2020.06.18
push, pop, shift, unshift, slice  (0) 2020.06.18
문자열 다루기  (0) 2020.06.18
반복문  (0) 2020.06.17
배열  (0) 2020.06.17

댓글