9 followers
Hi 👋 I am Shubham Verma, a Frontend Developer from India.
Subscribe to my newsletter and never miss my upcoming articles
We spent most of our time in VSCode so why not even search blogs from it! The concept behind this extension was simple, Just enter the username of the person and the blogs get displayed right within code. From there you can search the blogs, choose ...
HashNode provides the ability to add Custom CSS to your blogs. Using this feature we can add various fonts to our blog! (Adding multiple fonts can slow your site, so use it in limit.) Lets get Started! Go to your 'Blog DashBoard' and then 'Appearanc...
Protecting Routes from unauthenticated users is a crucial part of any app. In this blog, I'll show you exactly how to do that with your NextJS pages using Higher-Order Components. [1] There can be several ways of authenticating a user like using co...
For the curious ones: Live Demo : https://tweeter-eight.vercel.app GitHub Repo : https://github.com/ShubhamVerma1811/Tweeter Table of Content Table of Content Tech Stack Reason for choosing this Tech Stack NextJS TailwindCSS Firebase Problems ...
Data Types are important concepts in any language. They define the type of data a variable can hold. In JavaScript, we have various data types like: Number String Boolean Arrays Object null undefined The typeof() function can be used to see the ...
Let's start with Variables. A Variable is a container that can hold a certain value, like in Maths we have variable x=2 or x+y=2 where x and y are variables that can hold a number. In JS, we define a variable using var keyword. var a = 2; // here "a"...