ES6 Features: write less, do more💡 “So if you want to go fast, if you want to get done quickly, if you want your code to be easy to write, make it easy to read.” -By Robert C. Martin JavaScript has progressed a ton in recent years. If you are learning JavaScript in 2022 and you ...Jun 19, 2022·6 min read
JavaScript Array Methods Detailed Review of forEach() ,map , filter() and reduce()Jun 19, 2022·9 min read
React-Redux SetupEveryone knows and loves React and Redux. So before we understand Redux Setup Let’s first understand ........ What is Redux? Redux is a predictable state container designed to help you write JavaScript apps that behave consistently across client, ser...Jun 19, 2022·4 min read
Javascript Object MethodsWhat are objects?? 🧐 An object is a list of items that are stored in the form of key-value pairs. The value stored in the object can be of any valid type in Javascript. 💡 JavaScript object is a non-primitive data type that allows you to store mu...Jun 19, 2022·3 min read
Replacing Lifecycle methods with React HooksWhat are React lifecycle methods? React lifecycle methods are the events or scenarios that happen while your component is rendered for the first time (birth) and discarded after its use (death). By default, this method can’t be used in functional com...Jun 19, 2022·6 min read
What is WebPack and What are Modules?Why WebPack?🕸️ What problem does it solve?🧐 In its broadest definition: WebPack is a bundler, a module bundler. 😼 What it basically does is bundles all assets and files. 💪 To understand why WebPack is necessary, it is important to know How was Ja...Jun 19, 2022·9 min read
Quick Guide on React useState() Hook💡 React Hooks are basically the power to functional components. In React, Hooks are in-built functions that allow React Developers to use React State and lifecycle methods inside the functional components. One of the most important parts of any...Jun 19, 2022·5 min read
API handling: Axios!! or Fetch API!😱Do you want to pull in weather data for your users? 😎 Want to make a site that tracks COVID 19 cases? 😎 You could do all of these by using API integration and giving your code superpowers to automate the whole process. In JavaScript, Fetch API and ...Jun 19, 2022·6 min read