Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
function show(s, n) { console.log("s = " + s); return n; } // 1. print: "javascript" and return 12 // 2. print: "c++" and return 2 // 3. 12 / 2 = 6 console.log(show("javascript", 12) / show("c++", 2)); /* run: s = javascript s = c++ 6 */