Javascript Brain Teaser
Javascript Brain Teaser
Brain Teaser related to javascript scope If code above is executed, what is the console output? var text = 'outside'; function logIt(){ console.log(text); var text = 'inside'; }; logIt(); Answer: If your answer is 'outside' or 'inside' then your answer is wrong. The correct answer is 'undefined'. Just to make sure, if your answer is the answer is...