So, I have an array of function, e.g.:
var functions = [
function(){alert('foo');},
function(){alert('bar');}
];
Is it possible to call all the functions in this array after a Timeout, like this:?
setTimeout(/*insert function 1 and 2 here*/, 2000);