go to index

Debugging a Production Issue: Lessons Learned from Solving a Date Parsing Bug in Chromium v110

Debugging a production issue can be a daunting task, but it's also an opportunity to learn new things and improve your skills as a developer. Recently, We encountered a production issue where one of the web pages in our application was not working. T...


Promise.all vs Promise.allSettled in Javascript

Promise. all and Promise.allSettled is used to iterate over an array of promises. However, both have a few subtle differences, let's understand that in this article. Promise.all method Promise. all iterates over an array of promises and resolve to t...