Understanding undefined in Javascript Interesting thing about variable handling in Javascript is there is no type information associated to a variable. Ex, var jkoder=1; Here variable jkoder is of number type. But, since Javascript has loose typing so we can associate jkoder variable to string type. jkoder="hello javascript"; What I wanted to say is in Javascript variable can be associated ... Read More »