Friday, 29 March 2013

JavaScript - Predict the Output - Question 5


    var bar = {
       "a": function () {
            alert("Hello");
       }
    };
    
    function foo() {     
         Object.prototype.a = 'Set from prototype';     
         return function inner() {
             alert(bar.a());
          }     
    }

foo()();