Hi @GyngyiKiss,
setInterval()
and setTimeout()
should largely work how they do in Node with the notable exception that our runtime will not wait for all timers / callbacks to complete before halting execution. If all sync and async code from your function handler finishes executing before the timeout is triggered then the runtime will clean up and the timer callback will never be executed.