Contact: aviboots(AT)netvision.net.il
40,769 questions
53,151 answers
573 users
function f() { return 'function f()'; } function test(s, f) { const message = f(); console.log(`${s} ${message}`); } test('aaa', f); test('ccc', f); /* run: "aaa function f()" "ccc function f()" */