typeof1 타입 구분 /* ======================*/ // 타입 구분 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 2020. 6. 18. 이전 1 다음