Category AsynchronousPosted on April 21, 2020July 8, 2020What is a Promise in Javascript? Hi, ES5 natively supports 2 patterns for write Asynchronous code, that is, the event pattern and the callback pattern, but in ES6 we have a new pattern for write Asynchr…
Category AsynchronousPosted on April 17, 2020July 8, 2020Let’s talk about the Callback hell Javascript Hi, the Callback hell is an anti-pattern of Javascript that we need to avoid when we are programming with callbacks. …