typeof(Array,null)返回object,typeof(null,Array)返回function

时间:2013-09-01 09:57:29

标签: javascript

正如标题所说,typeof (Array, null)返回objecttypeof(null, Array)返回function

返回第二个参数的类型。

为什么?

1 个答案:

答案 0 :(得分:7)

因为

所以

typeof (a, b)返回typeof b

,在你的情况下

  • typeof (Array, null)typeof null which is "object"
  • typeof(null, Array)typeof ArrayArray为函数。