Harshit Sisodiafull-stack-development-in-30-days.hashnode.dev·Dec 15, 2024Day 5: Introduction to the DOM - Manipulating the Web with JavaScript“Exploring the DOM - Bringing Interactivity to Your Web Pages” Introduction: Explain the Document Object Model (DOM) as the bridge between HTML/CSS and JavaScript, enabling developers to dynamically interact with and manipulate web pages. Example: "...Web Development
Arsalan Adeeblogicbricks.hashnode.dev·Dec 14, 2024Solution of over-centralization of states in React .The solution to over-centralization of state in React involves balancing between local and global state management while adopting the right tools and patterns based on your application's needs. Here's a comprehensive strategy: 1. Lift State Just Eno...1 likejs
Darshit Anjariadarshitanjaria.hashnode.dev·Dec 14, 2024Exploring NPM and Bun: Which Tool Fits Your JavaScript Development Needs?Introduction When it comes to JavaScript development, NPM (Node Package Manager) has long been the cornerstone for managing dependencies, running scripts, and sharing libraries. However, Bun, a newer JavaScript runtime and toolkit, has entered the sc...JavaScript
Vitthal Korvanvitthal-korvan.hashnode.dev·Dec 11, 2024React JS - PracticalsCreate an application in ReactJS to implement the component life cycle Program: // 1. Component Life Cycle (Class Component) import React, { Component } from 'react'; class LifeCycleDemo extends Component { constructor(props) { super(props)...230 readsReact-MasteryReact
Darshit Anjariadarshitanjaria.hashnode.dev·Dec 10, 2024Why response.json() Needs await: Simplify Asynchronous JavaScriptWhen working with fetch API in JavaScript, you often encounter the need to use the await keyword when calling response.json(). This can be puzzling to newcomers, as response.json() looks like a simple function call, but it’s actually asynchronous. Le...JavaScript
Dashika PVdashi.hashnode.dev·Dec 6, 202430 Days into JS - Day 1Create Hello World Function Write a function createHelloWorld. It should return a new function that always returns "Hello World". Function Syntax In JavaScript, there are two main ways to declare a function. One of which is to use the function ke...JavaScript
Ajinkya Veerseo-in-react-js.hashnode.dev·Dec 4, 2024Search Engine Optimization in React JsAchieving a spot in the top 3-4 Google search results is a dream for every website owner. If you're working with React, a great way to improve your SEO and manage dynamic titles and meta tags is by using the react-helmet npm package. This powerful to...SEO
Vishal Singhthevishingh-react-hooks.hashnode.dev·Nov 29, 2024Understanding React Hooks The Ultimate Beginner's Guide 🔑React Hooks are functions that let you use React state and lifecycle features in functional components. They help you manage state, side effects, and more without using class components. Let's explore each type of hook in a simple way for beginners! ...2 likesReact
babaixdevbabaixdev.hashnode.dev·Nov 24, 2024JavaScript Learning Plan: Master the Basics to Advanced in 30 DaysDescription:Achieve JavaScript mastery with this 30-day structured learning plan. Cover essential programming topics, including variables, loops, DOM manipulation, and API integration. Perfect for beginners and aspiring developers, this plan combines...JavaScript
Ahmed Razaahmedrazadev.hashnode.dev·Nov 23, 2024The Invention and Evolution of JavaScript: Why It Was Created and How It WorksJavaScript, often referred to as the backbone of modern web development, is one of the most widely used and versatile programming languages today. From dynamic websites to powerful backend applications, JavaScript has firmly entrenched itself in the ...JavaScript