Blog Goals: How inheritance makes coding efficient How do we achieve Inheritance in Js Object.create() method Everything in Js is object Prototype chain Prototype method available on the constructor function Difference between proto and prototype Creating your own array library Read more
Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Latest Questions
🛠️ Vue Tip: Creating Reusable Components with Slots In Vue.js, creating reusable components is essential for building maintainable and scalable applications. One powerful feature ...Read more
I started out on my React project with a few ideas in mind. I knew I wanted to create an art showroom with art created by DALL·E so after narrowing down ...Read more
Introduction JavaScript is a dynamic language that allows web developers to add interactive features to web applications. Among its built-in functions are setTimeout and setInterval, used for scheduling tasks and managing timing within applications. In this article, ...Read more
Introduction If you're diving into the world of backend development, learning how to build APIs is an essential skill. One of the most popular ...Read more
Hello, everyone. Today, I'm going to talk about how to fire a specific function when the URL changes in Next.js. This will fire not only on page transitions but also on browser back events. ...Read more
The browser(chrome or firefox) extensions listed below are the ones that I use for my productivity and convenience. And I am sure that some of you are already using these extensions or will start using ...Read more
Lets say we have a parent component App import React from "react"; import { useState, useEffect } from "react"; import Search from "./Search"; const App = () => { ...Read more
🔗 Click Here to visit my Portfolio Website
Var, let & Const are used to declare variables, objects and constants in JavaScript. Var Var keyword has been used for a longtime for variable ...Read more