16
Apr

How to differentiate outer variable with same name in javascript closures

Suppose the variable name in outerfunction is same as in inner function function outer() { var b = 10; var a = 100; function inner() { b = 20;...

Read More