Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
let functionCallCounter = 0; function add(a, b) { functionCallCounter += 1; return a + b; } add(1, 2); add(3, 4); add(5, 6); console.log(functionCallCounter); /* run: 3 */