“JavaScript espera” Código de respuesta

Async Awiat

const data = async ()  => {
  const got = await fetch('https://jsonplaceholder.typicode.com/todos/1');
  
  console.log(await got.json())
}

data();
Salo Hopeless

JavaScript espera

await new Promise(resolve => setTimeout(resolve, 5000)); // 5 second wait

//or

(async () => {
await new Promise(resolve => setTimeout(resolve, 5000)); // 5 second wait
})();
Pudochu

espera javascript

If the value of the expression following the await operator is not a Promise, it's converted to a resolved Promise.
Smoggy Swiftlet

JavaScript espera la palabra clave

let result = await promise;
SAMER SAEID

Async espera js

fetch('coffee.jpg')
.then(response => {
  if (!response.ok) {
    throw new Error(`HTTP error! status: ${response.status}`);
  } else {
    return response.blob();
  }
})
.then(myBlob => {
  let objectURL = URL.createObjectURL(myBlob);
  let image = document.createElement('img');
  image.src = objectURL;
  document.body.appendChild(image);
})
.catch(e => {
  console.log('There has been a problem with your fetch operation: ' + e.message);
});
Tired Toucan

JS espera

const a = async () => {	
  	await b();
  	c();
};
Solstice

Respuestas similares a “JavaScript espera”

Preguntas similares a “JavaScript espera”

Más respuestas relacionadas con “JavaScript espera” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código