From the course: Learn JavaScript: Write Modern Code with JavaScript ESNext
Unlock this course with a free trial
Join today to access over 25,000 courses taught by industry experts.
Learning objectives - JavaScript Tutorial
From the course: Learn JavaScript: Write Modern Code with JavaScript ESNext
Learning objectives
- Welcome to Lesson 8: Work with Asynchronous Code in JavaScript. In this lesson, you'll learn about how to write asynchronous code in JavaScript, which was previously a task that was a little bit more difficult for most JavaScript programmers. Now, there are several ways of doing this asynchronous programming in JavaScript these days and we'll walk through each of these ways in detail. Now, by the end of this lesson, you'll have a thorough knowledge of the three main ways of doing asynchronous operations in JavaScript and you'll be much more experienced with doing this. So, the basic structure of this lesson is going to look like this. We start off by looking at using callbacks in JavaScript and then we'll move on to looking at something called Promises, which can be a little bit tricky to wrap your head around at first, but I think you're going to enjoy and finally, the last thing that we look at is the most modern way of doing asynchronous programming in JavaScript, which is by…