Contact: aviboots(AT)netvision.net.il
39,941 questions
51,879 answers
573 users
function xoo() { console.log("xoo()"); function in_func() { // accessible only within xoo() return 871; } console.log("before return"); return in_func(); } console.log(xoo()); /* run: xoo() before return 871 */