Back to Browse

#33 Timing Functions in JavaScript

88.7K views
Dec 1, 2018
10:53

setTimeout() - The setTimeout() method calls a function or evaluates an expression after a specified number of milliseconds. clearTimeout() - The clearTimeout() method clears a timer set with the setTimeout() method. The ID value returned by setTimeout() is used as the parameter for the clearTimeout() method. setInterval() - The setInterval() method calls a function or evaluates an expression at specified intervals (in milliseconds). The setInterval() method will continue calling the function until clearInterval() is called, or the window is closed. The ID value returned by setInterval() is used as the parameter for the clearInterval() method. clearInterval() - The clearInterval() method clears a timer set with the setInterval() method. The ID value returned by setInterval() is used as the parameter for the clearInterval() method. Video by - Tanmay Sakpal Simple Snippets Channel link - https://www.youtube.com/simplesnippets Support by becoming a Member : https://www.youtube.com/channel/UC59K-uG2A5ogwIrHw4bmlEg/join

Download

1 formats

Video Formats

360pmp413.1 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

#33 Timing Functions in JavaScript | NatokHD