1. 程式人生 > >js類型識別

js類型識別

width fin 類型 undefine 標準 自定義對象 images bject cto

技術分享

typeof總結:

  可以識別標準類型(Null除外)

  不能識別具體的對象類型(Function除外)

Object.prototype.toString總結:

  可以識別標準類型和內置對象類型

  不能識別自定義類型

constructor總結:

  識別標準類型(undefined/Null除外)

  識別內置對象類型

  識別自定義對象類型

instanceof總結:

  判別內置對象類型

  不能判別原始類型

  判別自定義對象類型

js類型識別