타입
내장 타입
null
typeof null === "object"; // true
typeof null === "null" // false"function"
typeof function a(){ /*...*/ } === "function" // true변수엔 따로 타입이 없다.
Last updated
typeof null === "object"; // true
typeof null === "null" // falsetypeof function a(){ /*...*/ } === "function" // trueLast updated