setTimeout
Sets a timeout that will execute a callback function after the specified duration.
Description
vcc.setTimeout(seconds, callbackFunction)
Sets a timeout that will execute a callback function after the specified duration.
Parameters
seconds
(number) The number of seconds to wait before executing the callback.
callbackFunction
(function) The name of the function to execute after the timeout.
Return values
none
Example
vcc.setTimeout(60, handleTimeout);
Comments
Can’t find what you need? Use the comment section below to connect with others, get answers from our experts, or share your ideas with us.
There are no comments yet.