The default width is 980 pixels.
console.log(window.bar) // [Function ... ]
function Foo(arg) {
"use strict";
this.bar = function() {
return arg;
};
return this.bar();
}
Foo('x'); // Uncaught TypeError: Cannot set properties of undefined (setting 'bar')