HNHuzaima Nadeem Khaninhuzaima.hashnode.dev·Mar 19, 2023 · 3 min readDebounce search in reactDebounce search in react is a useful technique for improving the performance of search functionality. Searching is an essential feature for many applications, but it can put a lot of strain on a system if not implemented properly. In this article, we...00
HNHuzaima Nadeem Khaninhuzaima.hashnode.dev·Aug 8, 2022 · 2 min readSpeed up Promises in JavaScriptPromises are an integral part of async code in JavaScript. We often come across the need to run multiple promises at a time that are independent of each other. We can achieve this by using JavaScript's Promise.all. Promise.all is a promise provided b...00