BOOKS - PROGRAMMING - Asynchronous Programming Patterns in javascript How to Use...
US $5.87
556237
556237
Asynchronous Programming Patterns in javascript How to Use Async/Await and Promises to Solve Programming Problems
Author: Tamas Sallai
Year: 2021
Number of pages: 139
Format: EPUB | PDF
File size: 10 MB
Language: ENG
Year: 2021
Number of pages: 139
Format: EPUB | PDF
File size: 10 MB
Language: ENG
Master modern asynchronous programming in javascript. Learn the basics of async functions and Promises, then the common patterns that emerge when using asyncawait. Know how to write code that handles edge cases and concurrency right. Asynchronous programming is everywhere in javascript. This is the result of the fundamental choices that define how it works. In other languages, you can use multiple threads and that allows synchronous waiting, a crucial feature missing from javascript. It is by design single-threaded and a wait operation stops everything, just think of the case where a long calculation freezes the UI.