hackthichackthic.hashnode.dev·Oct 3, 2024This is the first day of the backend Development learning: Advanced JavaScriptThese are the 13 important topics to learn before revising the backend in MERN Core JavaScript Concepts Functions Asynchronous Programming Object-Oriented Programming (OOP) Event Loop and Concurrency Model Working with APIs Modules File Syste...Discusschai aur javascript
Shiva Nagendra Babu Koreshivanagendrababu.hashnode.dev·Sep 30, 2024🧑💻 Step-by-Step Guide for React Native Beginners: From Setup to Running Your First App! 🚀 @chai aur code1️⃣ Installing React Native Run the following command: npx react-native init Awesome01 ⚠️ Note: The init command is deprecated; you'll see a message advising to use npx @react-native-community/cli init after Dec 30, 2024. 2️⃣ Setting Up Andro...Discuss@hiteshchoudharylco
nikhil kumarnikhilshaw.hashnode.dev·Sep 4, 2024Journey of Mastering REACT Through VITEIn the third video of the 'Chai aur Code' React series, I picked up some interesting concepts. Firstly, React isn't just limited to the core library; it extends into two more domains with React DOM and React Native. The script tag plays a pivotal rol...Discuss·1 likeReact
Danish Khandanishkh.hashnode.dev·Sep 4, 2024Rewrite React Native AppAll thanks to Hitesh Choudhary Sir for this wonderful content. In this article, we will start with the basics of react-native. Views are similar to div. Text: It is used to write texts and strings. SafeAreaView: It is used to avoid the notch. Wrap...Discuss·1 likeReact Native
Rohit Gawanderohit253.hashnode.dev·Sep 3, 2024"Mastering CSS: A Comprehensive Guide to Selectors, Pseudo-Elements, and Best Practices"Introduction to CSS CSS, or Cascading Style Sheets, is a cornerstone technology used to define the presentation of web pages. It enables you to control the layout, colors, fonts, and overall aesthetic of a website. When we first start learning CSS, a...Discuss·31 readsFull Stack Javascript@hiteshchoudharylco
Rohit Gawanderohit253.hashnode.dev·Sep 1, 2024"Comprehensive Guide to HTML Tables, iFrames, and Forms: Practical Examples and Best Practices"1. What is a Table in HTML? In HTML, a table is a structured way of displaying data in rows and columns. It is created using the <table> tag, with rows defined by the <tr> (table row) tag, and columns defined by the <td> (table data) tag. The <th> ta...DiscussFull Stack JavascriptHTML5
Nitin SharmaforReactJs by Nitinreactjsbynitin.hashnode.dev·Aug 6, 2024Virtual DOMWhat is Virtual DOM: The Virtual DOM is a blueprint of the Real DOM. In React, for every DOM object, there is a corresponding Virtual DOM object. A Virtual DOM object is a representation of a DOM object, like a lightweight copy. A Virtual DOM obj...Discussjspiders
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...Discuss·10 likes JavaScript interview Prepration cheat-sheet🥂2Articles1Week
Alpit Kumaralpit.hashnode.dev·Aug 1, 2024Day 20 - A Friendly Guide to LocalStorage and SessionStorage in JavaScriptScreenshot:- Hey there! Have you ever wondered how websites remember your preferences or keep you logged in even after you close the tab? Well, that's where LocalStorage and SessionStorage come into play. In this article, we’ll dive into these two f...DiscussJavaScript
Alpit Kumaralpit.hashnode.dev·Jul 31, 2024Day 19: Regular ExpressionsScreenshot:- Regular expressions (regex) are patterns used to match character combinations in strings. They are powerful tools for searching, replacing, and validating text. Tasks/Activities: Activity 1: Basic Regular Expressions Task 1: Match a Sim...DiscussJavaScript