typeof 'hello' // "string"
typeof 100 // "number"
typeof true // "boolean"
typeof false // "boolean"
typeof {age:'77'} // "object"
typeof [10,20,30] // "object"
여기서 재밌는점은 배열을 넣으면 "array"가 나와야 하는데 "object"가 나온다.
그래서 배열을 구하는 방법은 아래와 같다.
Array.isArray([10,20,30]) //true
배열타입 확인하기 - Array.isArray()
let a = [1,3,5];
a.length; // 3
let b = [];
b.length; // 0
let a = 'a b c';
a.split(' '); // ["a","b","c"]
for(let el of array) - 배열
for(;et in object) - 객체