AAjay inlovingit.hashnode.dev·May 20, 2024 · 5 min readGetting Started with React's UseReducer Hook.If you are getting started with react, there is almost 100% chance that you are practicing React with hooks. (The 100% stat i just made up :D,but i feel strongly this could be true) . And in all Fairness,the simple good "useState" hook will manage yo...01Y
AAjay inlovingit.hashnode.dev·Mar 30, 2024 · 2 min readGetting started with generator functions in javascript.Generator functions in Javascript return a "Generator" Object. And a generator in return is a type of iterator. We can say an object is iterator when it has a next method someIterator.next() // {value:"some value",done: false) someIterator.next() // ...00
AAjay inlovingit.hashnode.dev·Nov 28, 2021 · 18 min readLinked Lists with JSA lil note to begin with - I am in learning phase of web development and coding, if you find any discrepancy in the article let me know in the comments. This Blog is result of direct inspiration from Scott Barrett's udemy course -Data Structures and ...01S