priyanka chaudharipriyankachaudhari.hashnode.dev·Aug 31, 2024Master Node.js in 30 Days: A Complete Learning FlowchartCreating a flowchart for learning Node.js in 30 days involves breaking down the learning process into manageable chunks. Here's a suggested flowchart with a day-by-day guide: Node.js Learning Flowchart (30 Days) Day 1-2: Introduction to Node.js What...11 likes·31 readsNode.js from 0-1002Articles1Week
priyanka chaudharipriyankachaudhari.hashnode.dev·Aug 6, 2024Understanding the Differences: Session Storage and Cookies ExplainedBoth cookies and session storage are used to store data on the client side in web development, but they differ in how they store data, how they are used, and their characteristics. Let's break down the differences in detail: 1. Data Storage and Size...11 likes·422 reads JavaScript interview Prepration cheat-sheet🥂2Articles1Week
priyanka chaudharipriyankachaudhari.hashnode.dev·Aug 5, 2024What are the possible ways to create objects in JavaScriptIn JavaScript, you can create objects using several different methods, each with its own use case and syntax. Here are some common ways: 1. Object Literals The simplest and most common way to create an object is using an object literal. const pers...11 likes JavaScript interview Prepration cheat-sheet🥂2Articles1Week
priyanka chaudharipriyankachaudhari.hashnode.dev·Aug 3, 2024Mastering the 'this' Keyword for JavaScript DevelopersThe this keyword in JavaScript is a fundamental concept that can be a bit tricky to grasp because its value depends on how a function is called. Here's a detailed explanation: 1. What is this`?💻 The this keyword refers to the object that is curre...13 likes JavaScript interview Prepration cheat-sheet🥂2Articles1Week
priyanka chaudharipriyankachaudhari.hashnode.dev·Aug 2, 2024JavaScript Equality Operators: When to Use == and ===In JavaScript, == and === are both used for comparison, but they work differently: == (Equality Operator): The == operator compares two values for equality after converting both values to a common type. This is known as "type coercion." If the va...10 likes JavaScript interview Prepration cheat-sheet🥂2Articles1Week
priyanka chaudharipriyankachaudhari.hashnode.dev·Aug 1, 2024understand The single-threaded event loop💫सिऺगल थेङ🤠↔😎The single-threaded event loop is a core concept in JavaScript, especially relevant for environments like Node.js and browsers. How It Works:💫 Single-Threaded Nature: JavaScript executes code on a single thread, meaning it can only perform one tas...10 likesNode.js from 0-1002Articles1Week
priyanka chaudharipriyankachaudhari.hashnode.dev·Jul 31, 2024Top New Features in JavaScript ES6 You Need to Know💻ECMAScript 6 (ES6), also known as ECMAScript 2015, introduced several new features to JavaScript that make the language more powerful and easier to use. Here are some key ES6 features along with examples: ECMAScript 2015 was the second major revisio...10 likes·28 readsMagic of Angular✨#lates
priyanka chaudharipriyankachaudhari.hashnode.dev·Jul 27, 2024Pipes In Angular 🧨|✨What are Angular Pipes? Angular Pipes are a way to transform the format of output data for display. The data can be strings, currency amounts, dates, etc. Pipes are simple functions that accept an input and return a transformed value in a more techni...10 likesMagic of Angular✨2Articles1Week
Abhay Kumarab4k.hashnode.dev·Dec 29, 2023Building Your First Express App: A Quick GuideIntroduction: Express.js is a handy framework for building web applications using Node.js. If you're new to web development, creating your first Express app is a great way to start. In this guide, we'll walk you through the steps to create a simple E...iwritecode
Nandini Chhajednandinichhajed.hashnode.dev·Aug 29, 2023Flexbox Layout in CSSFlexbox, also called "Flexible Box Layout," is a method of positioning and aligning items inside a container. Flexbox creates layouts that are more effective and dynamic for responsive web design. A "flex container" that holds a collection of "flex i...5 likes·42 readsiwritecode