본문 바로가기

salesforce certification

(16/60) Given the following code:Counter = 0;const logCounter = () => {console.log(counter););logCounter();setTimeout(logCOunter, 1100);setInterval(() => {Counter++logCounter();}, 1000);What is logged by the first four log statements?