<<
Timeouts
are useful too repeat things over time (like animations)
SetTimeout ('Fun()', 100);
- Starts function "Fun" with no arguments in 100 miliseconds
- Note that the first argument of SetTimeout is a string: it is not trivial to
give arguments to the timed function
>>