typeof 返回變量的類型字符串值 、其中包括 「object」、「number」、「string」、「undefined」、「boolean」、前端
一、在變量只聲明、卻不初始化值 Or 在變量沒有聲明時 返回 「undefined」學習
> var b undefined > typeof(b) 'undefined' > typeof e 'undefined' >
前端全棧學習交流圈:866109386,面向1-3經驗年前端開發人員,幫助突破技術瓶頸,提高思惟能力,羣內有大量PDF可供自取,更有乾貨實戰項目視頻進羣免費領取。code
二、全部引用對象,返回」object「視頻
> var a = new Object() undefined > typeof a 'object' > var b = new String("str") undefined > typeof b 'object' > var c = new Boolean(false) undefined > typeof c 'object' > > var d = [] undefined > typeof d 'object' > > var e = {} undefined > typeof e 'object' >
前端全棧學習交流圈:866109386,面向1-3經驗年前端開發人員,幫助突破技術瓶頸,提高思惟能力,羣內有大量PDF可供自取,更有乾貨實戰項目視頻進羣免費領取。對象
三、根據變量值返回對應類型 「string」、「number」、「boolean」開發
> var a = 98 undefined > typeof a 'number' > var b = 'aaa' undefined > typeof b 'string' > var c = true undefined > typeof c 'boolean' >