Articles I've read on scope in javascript address what happens when you have nested variables/objects/functions defined in its parent scope. However, what happens if you have something like this:
function x(){
function y(){var u = 3;}
function z(){//is u available here?}
}