“Async erwartet eine anonyme Funktion” Code-Antworten

JS Async anonyme Funktion

(async () => {
	await someAsyncFunction();
})();
Outrageous Okapi

Async erwartet eine anonyme Funktion

let x = await (async function() {return "hello"})();
console.log(x);
// or
console.log(await (async() => 'hello')())
Precious Panther

Ähnliche Antworten wie “Async erwartet eine anonyme Funktion”

Fragen ähnlich wie “Async erwartet eine anonyme Funktion”

Weitere verwandte Antworten zu “Async erwartet eine anonyme Funktion” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen