function hello() { alert('Hi there!'); }

setTimeout(hello, 5000)
or
setTimeout( function() { alert('Hi there!'); }, 5000 )
by Luka Tatarishvili
4 years ago
JavaScript
array
0
Pro tip: use ```triple backticks around text``` to write in code fences