“установить интервал” Ответ

JavaScript setInterval

setInterval(function(){ 
	console.log("Oooo Yeaaa!");
}, 2000);//run this thang every 2 seconds
Grepper

Тайм -аут javascript

setTimeout(function(){
 	//code goes here
}, 2000); //Time before execution
Phil the ice cream man

JS SetTimeout

setTimeout(() => { alert('Hello') }, 1000)
Hotentot

Таймер в JavaScript

//single event i.e. alarm, time in milliseconds
var timeout = setTimeout(function(){yourFunction()},10000);
//repeated events, gap in milliseconds
var interval = setInterval(function(){yourFunction()},1000);
Dr. Hippo

set_interval ()

import threading

def set_interval(func, sec):
    def func_wrapper():
        set_interval(func, sec)
        func()
    t = threading.Timer(sec, func_wrapper)
    t.start()
    return t
Homeless Hawk

установить интервал

this.interval = setInterval(() => {
    this.currentTime = this.currentTime + 10;
    console.log(this.currentTime);
}, 1000);
Delightful Deer

Ответы похожие на “установить интервал”

Вопросы похожие на “установить интервал”

Больше похожих ответов на “установить интервал” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования