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...DiscussReact 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·28 reads@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...DiscussHTML5
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
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...Discuss·10 likes·27 readsMagic of Angular✨#lates
Alpit Kumaralpit.hashnode.dev·Jul 30, 2024Day 18: Algorithms Explained in a Beginner-Friendly WayScreenshot:- I am practicing DSA in C++ previously. So, please you can solve more questions for practice or refer Videos to learn algorithms, then easily you will write code in javascript. Today, we'll dive into some fundamental algorithms used in c...DiscussJavaScript