Contact: aviboots(AT)netvision.net.il
39,940 questions
51,877 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 */