I was playing around with the \"setTimeout\" function. This code runs like expected:
function myFunction() { console.log(\'test\'); setTimeout(myFunction
That is because by including the parentheses you're actually executing the function and passing its result to setTimeout.
setTimeout