Two Same Name Variables
In https://github.com/Khan/khan-exercises/blob/master/khan-exercise.js there are two var Khan variables. How come? Do they affect each other?
Solution 1:
One Khan
is the name of the global variable "Khan
", the other is a variable inside the self executing function that it is equal to.
varKhan = (function(){
....
varKhan = ...
....
})();
The indentation in the source file is horrible and you probably did not notice that....
Post a Comment for "Two Same Name Variables"