├── README.md ├── info.txt └── koss_21CH10079.pptx /README.md: -------------------------------------------------------------------------------- 1 | # Asynchronous JavaScript: A Comprehensive Guide 2 | 3 | This repository contains a detailed presentation on the differences between synchronous and asynchronous code in JavaScript, how to write asynchronous code, the advantages of using Promises over callbacks, and the use of async/await syntax. 4 | 5 | ## Table of Contents 6 | 7 | 1. [Synchronous vs Asynchronous](#synchronous-vs-asynchronous) 8 | 2. [How to Write Asynchronous Code](#how-to-write-asynchronous-code) 9 | 3. [Promises vs Callbacks](#promises-vs-callbacks) 10 | 4. [Using async/await](#using-asyncawait) 11 | 12 | --- 13 | -------------------------------------------------------------------------------- /info.txt: -------------------------------------------------------------------------------- 1 | Points discussed in the ppt are : 2 | Synchronous Vs Asynchronous 3 | How to make an asynchronous code 4 | Why are Promises better than Callbacks describing each thoroughly 5 | Use of async/await over Promises 6 | -------------------------------------------------------------------------------- /koss_21CH10079.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaid-24/asynchronous-synchronous-javascript/19ba50024e50cb7cf3aad096089d5b151f5dfd20/koss_21CH10079.pptx --------------------------------------------------------------------------------