카테고리 없음
javascript 변수 타입 정리
amugae
2018. 5. 1. 01:24
// primitive
String typeof "a" => string
Number typeof 1 => number
Boolean typeof true => boolean
undefined typeof "a" => undefined
null typeof "a" => object
// reference type
Object typeof {} => object
Array typeof {} => object
Function typeof function(){} => function