Why does this JavaScript example point to the global object (Window)? - by user353949 function F() { function C() { return this; } return C(); } var o = new F(); Read the article