How can you pass arguments to the function executed by setTimeout or setInterval?
setTimeout
setInterval
As additional parameters after the delay value.
By using an anonymous function that wraps the desired function call.
By specifying them in an object format.
Both a) and b)