there is two type of scope in javascript named function scope global scope
now i am executing this code
function abc()
{
alert(this);
}
abc();
abc call returning me [object Window] Why?? function makes another scope so why it is representing window