Js Promises Async — Free Javascript Tutorial
Learn Js Promises Async in Javascript with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.
TL;DR: Learn Js Promises Async in Javascript with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.
Written & reviewed by the Syllab.in Academic Team (CBSE/NCERT subject experts) · Updated
Js Promises Async in Javascript
JavaScript is single-threaded. Asynchronous code (API calls, timers) uses callbacks or Promises to handle tasks that take time without blocking the page.
A Promise is an object representing a future value. States: pending → resolved (then) or rejected (catch). Use .then() to handle success, .catch() for errors.
async/await is syntactic sugar over Promises. An async function always returns a Promise. await pauses execution until the Promise resolves — making async code look synchronous.
Promise.all([p1, p2, p3]) runs all promises in parallel and resolves when all are done. Promise.race() resolves/rejects as soon as the first one does.
Js Promises Async — Syntax
// Promise
const p = new Promise((resolve, reject) => {
resolve(data); // or reject(error)
});
p.then(data => console.log(data)).catch(err => console.error(err));
// Async/Await
async function fetchData() {
try {
const response = await fetch(url);
const data = await response.json();
Learn Js Promises Async step by step with Syllab's free interactive Javascript tutorial — runnable code examples, practice exercises and instant AI feedback, all free with no signup. Explore the full Javascript course →