# typeof ( ̄. ̄):有点奇怪的题


  1. typeof string 的输出结果

    • string
    • function
    • object
    • undefined
  2. typeof String 的输出结果

    • string
    • function
    • object
    • undefined
  3. typeof new String 的输出结果

    • string
    • undefined
    • function
    • object
  4. typeof String () 的输出结果

    • string
    • undefined
    • function
    • object
  5. typeof new String () 的输出结果

    • string
    • undefined
    • function
    • object
  6. typeof string + 0 的输出结果

    • function0
    • string0
    • undefined0
    • NaN
  7. typeof string - 0 的输出结果

    • string0
    • function0
    • undefined0
    • NaN
  8. typeof String + 0 的输出结果

    • string0
    • function0
    • object0
    • NaN
  9. typeof String - 0 的输出结果

    • string0
    • function0
    • object0
    • NaN
  10. typeof String + string 的输出结果

    • functionstring
    • functionundefined
    • NaN
    • ReferenceError
  11. typeof string + String 的输出结果

    • undefinedString
    • functionundefined
    • undefinedundefined
    • undefinedfunction String() {[native code]}
  12. typeof string * 0 的输出结果

    • string0
    • function0
    • NaN
    • ReferenceError
  13. typeof string == 'string' 的输出结果

    • false
    • true
    • NaN
    • ReferenceError
  14. typeof String == 'string' 的输出结果

    • false
    • true
    • NaN
    • ReferenceError
  15. typeof String == 'function' 的输出结果

    • false
    • true
    • NaN
    • ReferenceError
  16. typeof String === 'function' 的输出结果

    • false
    • true
    • NaN
    • ReferenceError
  17. typeof number 的输出结果

    • number
    • function
    • undefined
    • object
  18. typeof Number 的输出结果

    • number
    • function
    • undefined
    • object
  19. typeof new Number 的输出结果

    • number
    • function
    • undefined
    • object
  20. typeof new Number () 的输出结果

    • number
    • function
    • undefined
    • object
  21. typeof Number () 的输出结果

    • number
    • function
    • undefined
    • object
  22. typeof !Number () 的输出结果

    • number
    • function
    • boolean
    • object
  23. typeof array 的输出结果

    • Array
    • function
    • undefined
    • object
  24. typeof Array 的输出结果

    • Array
    • function
    • undefined
    • object
  25. typeof Array () 的输出结果

    • Array
    • function
    • undefined
    • object
  26. typeof new Array 的输出结果

    • Array
    • function
    • undefined
    • object
  27. typeof [] 的输出结果

    • array
    • function
    • boolean
    • object
  28. typeof +[] 的输出结果

    • string
    • function
    • object
    • number
  29. typeof ![] 的输出结果

    • array
    • function
    • boolean
    • object
  30. typeof Function 的输出结果

    • string
    • function
    • undefined
    • object
  31. typeof new Function 的输出结果

    • string
    • function
    • undefined
    • object
  32. typeof new Function () 的输出结果

    • string
    • function
    • undefined
    • object
  33. typeof object 的输出结果

    • string
    • function
    • undefined
    • object
  34. typeof Object 的输出结果

    • string
    • function
    • undefined
    • object
  35. typeof Object () 的输出结果

    • string
    • function
    • undefined
    • object
  36. typeof {} 的输出结果

    • string
    • function
    • undefined
    • object
  37. typeof null == typeof undefined 的输出结果

    • false
    • true
    • ReferenceError
  38. typeof null 的输出结果

    • null
    • function
    • undefined
    • object
  39. typeof undefined 的输出结果

    • null
    • function
    • undefined
    • object
  40. typeof true 的输出结果

    • null
    • function
    • boolean
    • object
  41. typeof Boolean 的输出结果

    • object
    • function
    • boolean
    • undefined
  42. typeof Boolean () 的输出结果

    • string
    • function
    • object
    • boolean
  43. typeof new Boolean () 的输出结果

    • string
    • function
    • object
    • boolean
  44. typeof Infinity 的输出结果

    • number
    • function
    • boolean
    • object
  45. typeof Infinity + Infinity 的输出结果

    • InfinityInfinity
    • numberInfinity
    • NaN
    • functionInfinity
  46. typeof Infinity - Infinity 的输出结果

    • InfinityInfinity
    • numberInfinity
    • NaN
    • ReferenceError
  47. typeof Symbol 的输出结果

    • symbol
    • function
    • object
    • array
  48. typeof Symbol () 的输出结果

    • symbol
    • function
    • object
    • array
  49. typeof Date 的输出结果

    • string
    • function
    • object
    • Date
  50. typeof Date () 的输出结果

    • string
    • function
    • object
    • Date