What is different between a and b function foo() { a = 4; var b = 5; }
Utilisateur anonyme
The interviewer told me a is a global variable, b is the private variable only exist in function foo. However, I think he is wrong about the global variable a. You cannot access the variable a outside function foo.