Home › coding › javascript › js promises async

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.

✓ 100% Free ✓ No Login Needed ✓ NCERT / CBSE Aligned ✓ Download as PDF

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 Jul 14, 2026

🤖 Stuck on any question? Ask Syllab's free AI Tutor for a step-by-step explanation — instant, unlimited, no login.

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 →

Explore:

  • Syllabus
  • Practice
  • Mock Tests
  • NCERT Solutions
  • Coding
  • GK Quiz
  • Career Predictor
  • AI Tutor
  • Live Quiz
  • Doubt Solver
  • Microlearning
  • Free Alternatives
  • Kids Zone
  • Study Room
  • Calculators
  • Worksheets

Syllab.in — Free learning for Indian students, Class 1–12