DrStrangeLove
DrStrangeLove

Reputation: 11557

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?

Upvotes: 3

Views: 204

Answers (2)

Naftali
Naftali

Reputation: 146310

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.

var Khan = (function(){

    ....

    var Khan = ...

    ....

})();

The indentation in the source file is horrible and you probably did not notice that....

Upvotes: 8

Arda
Arda

Reputation: 6926

variables wrapped in anonymous functions only work inside that function.

So this should work okay.

<script type="text/javascript">
$(function(){
   var khan = (function(){
        var khan = //this should not be a problem and they both work, this will be only available in the function
   }); 
});
</script>

Upvotes: 2

Related Questions