1 2 3 4 5 6 7 8 9
let a = function() { let y = 17; let boo = function() { return y; }; return boo(); }; a() === 17;