JavaScript is a language designed to run client-side. This has greatly affected not only the design of the language itself, but also the way its runtime environments are structured, with browsers, Node.js, and others. Browsers are designed for the so-called event-driven model, where code isn't executed continuously, but rather waits for user events, like button presses, mouse clicks, or scrolling. Each of these events (and dozens of others) triggers the necessary handler, and it has special requirements: it mustn't stop anything happening, because one event can cause many things to happen (almost in parallel), and the user must be able to continue to interact with the interface.
For these reasons, all engines (js-code executables) are built on an asynchronous model. Any input/output operations (such as Ajax requests) are performed asynchronously. Asynchronous code is wholly different from synchronous code, and takes time to get used to. It has a different way of handling errors and, in general, a different approach to writing code. Adding some features, creates problems in other places: what was easy to do in synchronous code may be difficult in asynchronous code. It's the price we pay for performance.
Asynchronous programming in JavaScript has gone through several stages: from collabs and promises, to the async/await concept. All of these approaches are important in their own way and will be discussed in this course. At the end, you'll learn how to write modern, efficient and understandable code that has the advantages of asynchronous code and is almost as good as synchronous code in terms of clarity and simplicity.
The main topics of this course are:
In this course, we study asynchrony, one of the most important things in JavaScript. To understand it, you need a good knowledge of basic programming language syntax, higher order functions, HTTP, and working with collections. These topics are covered in our other JavaScript courses. The correct sequence of courses can be found in the profession Frontend Programmer.
The Hexlet support team or other students will answer you.
A professional subscription will give you full access to all Hexlet courses, projects and lifetime access to the theory of lessons learned. You can cancel your subscription at any time.
Programming courses for beginners and experienced developers. Start training for free
Our graduates work in companies:
From a novice to a developer. Get a job or your money back!
Sign up or sign in
Ask questions if you want to discuss a theory or an exercise. Hexlet Support Team and experienced community members can help find answers and solve a problem.