When executing this code below, results are false, why? What is "this" bound to? I was expecting the results to be true in both alert statements
(function(win){
alert("this == win: "+ this == win); // false
alert("this == window: "+ this == window); // false
})(window);