I want to access global variable \'x\' when it is over-ridden by same named variable inside a function.
function outer() { var x = 10; function overRid
The global scope of your web page is window. Every variable defined in the global scope can thus be accessed through the window object.
window
var x = 10; function overRideX() { var x = "Updated"; console.log(x + ' ' + window.x); }();