Javascript files loaded in Nodejs are automatically wrapped in anonymous functions.
So in Node what you are really running is:
(function(/* There are args here, but they aren't important for this answer */){
var x = 10;
var o = { x: 15 };
function f(){
console.log(this.x);
}
f();
f.call(o);
})();
The browser does not do this. The issue is that now in Node x is just a normal variable in the scope of the function, it is not part of the global scope. When you call f() this way, this within f is the global scope.
If directly put x on the global scope, it will work in both cases.
this.x = 10;
That will place x on the window global object in the browser, and the global global object in Node.
Generally, you do not load things globally in Node, instead you group your code into modules, as described here. There is info about the various global things you can access here. And if you are curious about the wrapper, you can see it here.
this, inside a function, never coerces to the global object.) – Šime Vidas Dec 15 '12 at 20:00new Function(javascriptSourceCode)()because thenvar xwould declare a variable local to a function instead of being a top level global. – Mike Samuel Dec 15 '12 at 20:01null, notundefinedforthis.x. – Mike Samuel Dec 15 '12 at 20:02