function hello() { alert('Hi there!'); } setTimeout(hello, 5000)
setTimeout( function() { alert('Hi there!'); }, 5000 )
Pro tip: use ```triple backticks around text``` to write in code fences