如何获取此JavaScript函数的输出?

时间:2015-01-30 06:45:51

标签: javascript

如何获取此JavaScript函数的输出?

function getViewport() {
   return {
      width: document.documentElement.clientWidth;
      height: document.documentElement.clientHeight;
   };
}

1 个答案:

答案 0 :(得分:3)

这是一个匿名函数,所以如果你想使用它,你需要立即调用它并将结果分配给变量。

var theOutput = function() {
   return {
      width: document.documentElement.clientWidth;
      height: document.documentElement.clientHeight;
   };
}();

编辑后,它不再是匿名的,所以要调用它:

var theOutput = getViewport();
console.log('The width is: ' + theOutput.width);