Summary

This lesson offers a review of concepts that were covered in this course.

We'll cover the following...

What we covered in this course

This is the last lesson in this course. Let’s quickly summarize what we have learned in this course.

  • We covered the basics of a REST API.

  • We understood the following concepts:

    • Synchronous Web Apps: These apps will start executing at the very top of a file and execute all the way down to the bottom of the file. These web apps run each line in the order until they get to the bottom of the file, which is when they stop.
    • Asynchronous Web Apps: These apps start at the top of the file and execute the code until the
...