JavaScript:什么是' typeof'窗口

时间:2015-11-21 14:29:49

标签: javascript object typeof

我对JavaScript中的typeof窗口实际上有点困惑。我写了一个简单的代码。

(function (w) {
  'use strict';

  console.log(typeof Window); // function
  console.log(w.parent); // [object Window]
  console.log(typeof w.parent); // object
})(window);

即使w的父级是Window。它的类型是object。但是,当我typeofWindow进行操作时,它会给function margin-top。为什么会出现这种差异?

我已经设置了一个Plnkr

0 个答案:

没有答案