Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
function f() { return 'function f()'; } function test(s, f) { const message = f(); console.log(`${s} ${message}`); } test('zzz', f); test('ppp', f); /* run: zzz function f() ppp function f() */