Data Structure: Linked ListLinked List is chain of nodes where each node contains information of the data that it holds, and a pointer to the next node in the chain.Jan 2Jan 2
Data Structure: MatrixA 2-Dimensional array, where array at each index has the same sizeDec 18, 2024Dec 18, 2024
Data Structure: ArrayWhile preparing for coding tests, I realized that I have forgotten a lot of the things I have learned in college. Being a frontend…Dec 10, 2024Dec 10, 2024
How I Think and LearnThis post is not about coding, but more about how I think and learn on a daily basis, and how I organize my mind to efficiently understand…Dec 2, 2024Dec 2, 2024
Foundation of the WebAs a web developer, it is crucial to understand how the web works. While the web may seem complex at first, abstraction allows us to…Nov 18, 2024Nov 18, 2024
Refs and useImperativeHandleRefs come in handy at times when we need some type of value for an operation where the value should not follow React’s lifecycle.Nov 11, 2024Nov 11, 2024
Reacts Context APIState management is a key concept in React that Frontend developers will come across. Libraries like Zustand, and Redux exists, but may be…Nov 4, 2024Nov 4, 2024
Closure in Javascript(& React)When studying about memoization, dealing with hooks like useMemo and useCallback, an important topic came across which I thought would be…Oct 22, 2024Oct 22, 2024