admin

React.js – What is Props ?

Hey guys 👋🏻, In this post, let us cover what actually are props in React.js For this post we will first understand Props✔ What is Props ?✔ Understanding Props✔ Accessing Props in Functional and Class based Components ✔ Examples of Props Introduction to Props Props are used to make components configurable, dynamic and flexible. Every HTML element as we know has…

5 Frontend Development Trends to follow in 2022

Hey everyone 👋🏻, In this article, let us discuss about Top 5 Frontend Development Trends to follow in 2022 1. JavaScript JavaScript is one of the most popular programming languages that you can learn these days. More than 70 percent of the websites are developed using JavaScript. It is continually evolving as more and more…

React.js – Understanding JSX

Hey guys 👋🏻, In this post, let us learn what JSX is in React and why it is important for us as React developers to understand it. In this post, let us understand ✔ What is JSX ?✔ Example of JSX✔ JSX code being equivalent to React.createElement calls. ✔ JSX Restrictions What is JSX ?…

(2021) – Web Developer Full Course : HTML, CSS, JavaScript, Node.js and MongoDB

I recently started to create a Full Web Developer Course on my YouTube Channel and recently finished with the HTML and the CSS Section of this FREE course. More videos will be up on upload. HTML Section CSS Section JavaScript Section This section covers the basics of JavaScript along with the modern features that the…

✨Top 5 resources to learn Vue.js [in no particular order]

Hey everyone 👋🏻, In this article, I will be mentioning the top 5 resources that I highly recommend if you want to learn Vue.js. PS : I am not an affiliate of any of these resources/courses. These are just some of my personal recommendations if you are looking to learn Vue. Introduction Vue is a…

Vue.js – Introduction

Hey guys 👋🏻, In this post, I will be starting with a new series and it is on Vue.js. So in this first post, let us talk cover the Introduction to Vue.js For this post we will first understand Props✔ What is Vue.js ?✔ How to Get Started ? ✔ Declarative Rendering What is Vue.js?…

Build your own J.A.R.V.I.S in Python [Full Code + Video]

In this article, we will learn how to create a Feature Rich Virtual Assistant in Python. We will be adding following features to this project : 1. Time Reporting 2. Taking Screenshot 3. Performing Google Search 4. Opening a Specific Website 5. Searching on Wikipedia 6. Listen to Jokes 7. Desktop Notifications for COVID-19 Statistics. Here is…

What is REST API ?

Hey everyone ??, In this article, let us learn about one of the most important concepts that you as a backend developer must have a solid knowledge of (because anyways working with an API is a big part of your jobs) and that is REST APIs REST APIs Actual definition: “” Representational state transfer (REST) is…

React.js – What is State ?

Hey guys 👋🏻, In this post, let us cover an introduction to State in React.js. For this post we will understand✔What is State in React ?✔ Example for creating State in React.✔ Accessing the State✔ Using setState and understanding its pitfall. ✔ Using setState with callback to resolve the pitfall. Introduction to State Every component…

useRef Hook | useRef vs useState

Hey everyone , In this article, let us understand the useRef hook in React.js                     Syntax        CODE for the video                   Ref Example – 1              (An Interval Timer) As a…