What does the below line do considering it as the first line in your javascript file:
(function(){
alert(this);
})();
What does the below line do considering it as the first line in your javascript file:
(function(){
alert(this);
})();
(function(){
alert(this);
})();
Considering it as the first line in our javascript file it will alert with not null value.