“JS -Schlaffunktion mit Argument” Code-Antworten

JavaScript -Schlaffunktion

sleep = milliseconds => new Promise(resolve => setTimeout(resolve, milliseconds));

//        V  Must add this async keyword
sayHi = async () => {
  	// V Must include await
	await sleep(1000); // Sleep 1000 milliseconds (1 second)
  	console.log('Hi');
  	// Rest of code...
}
Pandata

JS -Schlaffunktion mit Argument

function sleep(delay) {
    var start = new Date().getTime();
    while (new Date().getTime() < start + delay);
}
Clever Cheetah

Ähnliche Antworten wie “JS -Schlaffunktion mit Argument”

Fragen ähnlich wie “JS -Schlaffunktion mit Argument”

Weitere verwandte Antworten zu “JS -Schlaffunktion mit Argument” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen