MKManish KCinmanishkc.hashnode.dev·Mar 20, 2023 · 3 min readOptimistic and Pessimistic UI RenderingIn our current technological phase, speed is no longer a feature but a requirement. Developers know Longer wait times lead to users experiencing negative feelings and the impression that the website or app is unreliable. Hence, the chances of losing ...00
MKManish KCinmanishkc.hashnode.dev·Mar 20, 2023 · 6 min readArrays in JavaScript: A Cheat sheet for a developerIn JavaScript, an array is a collection of values or elements, stored in a single variable. Arrays can hold values of any data type, including numbers, strings, booleans, and objects. const fruits = ["mango","orange","peach","apple"]; Here, fruits i...00
MKManish KCinmanishkc.hashnode.dev·Mar 20, 2023 · 3 min readDebounce Input in ReactDebouncing an input is a technique used to improve web application performance and user experience. When a user types into an input field, the application may perform several operations, such as filtering a list, fetching data from an API, or perform...00