JAJoseph Afolabiinjosephafolabi.hashnode.dev·Sep 15, 2023 · 6 min readReact: Prop drilling Vs. useContext hookIt is almost impossible to build a React app without having to pass properties, state and global variables around; typically from parent components to children components and even to deeper levels. In this article, I will explain two methods of passi...00
JAJoseph Afolabiinjosephafolabi.hashnode.dev·Aug 29, 2023 · 5 min readVariable and Function Hoisting in JavaScriptIntroduction Hoisting is a JavaScript term that describes a behaviour where variable and function declarations are moved to the top, enabling them to be usable anywhere irrespective of how deep down into the code they are declared. JavaScript hoistin...00
JAJoseph Afolabiinjosephafolabi.hashnode.dev·Aug 17, 2023 · 8 min readReact Hooks: useStatePrerequisite JSX, JavaScript, JavaScript ES6 Introduction What was your first thought when you heard about React Hooks? Have you ever wondered whether a real hook and react hooks are related? If we know anything, it's that most programming naming con...00
JAJoseph Afolabiinjosephafolabi.hashnode.dev·Aug 3, 2023 · 3 min readPython Class InheritanceInheritance is a programming method that models the relationship that exists between parents and children. A child class inherits variables, methods, and other parameters from an existing class that is a parent class. With the help of the concept of ...00