天天看點

javascript中instanceof與typeof的差別

  1. typeof(判斷簡單類型):
    undefined
    null
    string
    number
    boolean           
  2. instanceof(判斷是否是某個對象的執行個體):
    String()
    Object()
    Boolean()
    Number()
    RegExp()