JavaScript Solving an Ambiguous JS Interview Question on Curried Functions This is an interesting programming challenge that reddit user i7_leaf claims to have received as an interview question. There is one key difference between the original question and what I will cover…
React Building ReactN — An extension of React that includes global state management When your React application reaches a certain size and scope, attempting to manage state within component instances adds too much complexity, prop drilling, and code smell. Developers inevitably turn…
React React Suspense with the Fetch API From the legend Dan Abramov himself, we receive such gems as “There is [no data fetching solution compatible with React Suspense] that exists yet,” and “[React Cache] will be the first one,” and…
JavaScript Cache Your React Event Listeners to Improve Performance An under-appreciated concept in JavaScript is how objects and functions are references, and that directly impacts React performance. If you were to create two functions that are completely identical…