setInterval()
setInterval() is a function that repeatedly executes a specified function or code block at a defined interval in milliseconds. It's often used for tasks like creating animations, polling for updates, or running periodic checks. The function specified will keep executing at the defined interval until you explicitly stop it using clearInterval().