Month: May 2022

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…

CSS

Best CSS Frameworks in 2021

Bootstrap Foundation Bulma Tailwind CSS UI Kit Milligram Materialize CSS Quickly design and customize responsive mobile-first sites with Bootstrap, the world’s most popular front-end open source toolkit, featuring Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful JavaScript plugins. 2. Foundation A Framework for any device, medium, and accessibility. Foundation is a…

The NoSQL Database : Basics of CRUD in MongoDB – Part 1 – insertOne, find

Hey guys 👋🏻, In this article, let us understand about The NoSQL Database : Basics of CRUD in MongoDB. So in this article we will learn about how to retrieve to retrieve/access, delete, create and update our documents. We will also see how we can delete a document by making use of its id and all…

Web Dev Made Easy

Hey everyone 👋🏻, In this article, I will tell you about a website using which you can use as a resource for learning Web Development. So the website name is this : web.dev https://web.dev Now some of the featured courses on their website are : 1. Learn Responsive Design This course takes you on a…

✨8 Vue Projects Every Beginner Should Try

Hey everyone , In this article, let us see 8 Vue Projects Every Beginner Should Try. This article was first published on https://the-nerdy-dev.com/.Check the website for more interesting articles and tutorials on Web Development. Introduction Vue.js is an open-source model–view–view-model (MVVM) front end JavaScript framework for building user interfaces and single-page applications. It was created…

When to use the useRef hook ?

Hey everyone 👋🏻, In this article, let us learn about a very special React Hook called as the useRef hook and understand how and when to use it. What is the useRef hook ? useRef hook is something that I briefly discussed in one of my articles where I described useRef hook as something equivalent…

How Hoisting works in JavaScript ?

JavaScript Hoisting refers to the process whereby the interpreter appears to move the declaration of functions, variables or classes to the top of their scope, prior to execution of the code. Hoisting allows functions to be safely used in code before they are declared. Variable and class declarations are also hoisted, so they too can be referenced before they are declared….

Demystifying the useState hook in under 10 minutes

In this video, we will learn first about the basic Hooks that we have in React namely the useState and the useEffect hook. Once we understood the bare basics of the need for Hooks, then we will start to learn about the useState hook.