Karthik ParitiforKarthik Paritikardev07.hashnode.net·Sep 17, 2021What is Typescript and why should you be using it?🤔I am sure that in your web development career you must have used JavaScript at least once. And I am sure you must have found it very useful and very powerful. But what if I say there is another language that is just as powerful as JavaScript and has ...Usman Sabuwala and 4 others are discussing this5 people are discussing thisDiscuss·113 likes·1.8K readsTypeScript
BelloforBello's Blogtechstack.hashnode.net·Dec 22, 2020What is React?React happens to be the most popular JavaScript framework sourced from Stack Overflow Developer Survey (2020). It is the best alternative to two other popular JavaScript frameworks, Angular and Vue. They all allow you to create fast apps in the brows...Discuss·71 likes·538 readsReactReact
BelloforBello's Blogtechstack.hashnode.net·Dec 28, 2020React JSXThis article is sponsored by Flutterwave - Flutterwave is the easiest way to make and accept payments both online and offline from customers anywhere in the world. It is absolutely free! The elements in JSX are not from HTML, rather from React. The ...Discuss·71 likes·181 readsReactReact
Rob BforMy Bootcamp Diarymybootcampdiary.hashnode.net·Apr 24, 2023The only way to learn React is by writing ReactIt’s Monday afternoon and I’m ready to kick this week off with some good old fashion optimism. I discovered a song on Spotify the other day called ‘Good Morning Sunshine’ and it contained lyrics that I’ve decided represent my coding journey. It said:...Discuss·2 likesReact
Prahlad InalaforPrahlad Inalaprahladinala.hashnode.net·Apr 24, 2023JSX IntroductionJSX (JavaScript XML) is a syntax extension to JavaScript used to write HTML-like structures in JavaScript code. It was popularized by the React framework and is used extensively in React applications. JSX allows developers to write HTML-like syntax d...DiscussReact NativeJavaScript
Chirayu PancholiforCuriouschirayu31.hashnode.net·Apr 22, 2023Everything about JSXOne of the core concepts of React. What is JSX? JSX is a JavaScript Extension Syntax used in React to easily write HTML and JavaScript together. const jsx = <h1>This is JSX</h1> This is simple JSX code in React. But the browser does not understand...Discuss·10 likesReact
Yashodeep NimbekarforDev Journeyyashodeep.hashnode.net·Apr 20, 2023Boosting UI Performance: Why React's Virtual DOM and JSX Make It a Top Choice for DevelopersReact is the most popular and trending JavaScript library among developers to build faster and more responsive User Interfaces. One of the major reasons the React library become so popular is because of its Speed and performance. In this blog post, w...DiscussJavaScript
Arnab MannaforArnab's Blogarnabmannadev.hashnode.net·Apr 16, 2023Class Components vs Functional Components in React(Which is better for beginner)Class Components Class Components are the older way of defining React components. They are ES6 classes that extend React. Component class. Class components have a render() method that returns JSX (JavaScript XML) that describes what the component sho...Discuss·10 likes·92 readsReact
Abhishek DhapareforAbhishek Dhapare's blogabhishekdhapare.hashnode.net·Apr 11, 2023JSX vs. TSX: Choosing the Right Syntax for Your React AppReact is a popular JavaScript library for building user interfaces. It allows developers to write reusable UI components in JavaScript and provides a virtual DOM for efficient rendering. In addition, React uses a syntax extension called JSX to write ...Discuss·41 readsJSX
Rajarshi Sarkarforrajsarkar.hashnode.net·Apr 10, 2023Getting Started with JSXconst myComponent = <h1>Hello, I am sample JSX</h1>; The above code snippet somewhat looks like HTML and it also uses a JavaScript-like variable but is neither HTML nor JavaScript, it is JSX. What is JSX? JSX (JavaScript XML), originally developed ...Discuss·34 readsReact Basics: A Beginner's GuideReact
Tech BlogsforTech Blogsmrtechblogs.hashnode.net·Apr 10, 2023Writing Markup with JSX in ReactJSX is an extension to JavaScript that allows you to write XML-like code to create and manipulate React elements. With JSX, you can easily define dynamic content and manipulate the DOM elements. In this article, we will discuss how to write markup wi...DiscussJSX
Manthan GodhaforManthan Godhagodhamanthan.hashnode.net·Apr 7, 2023It's JSX, not HTML!You’ve undoubtedly heard of JSX if you’ve worked with React. In this blog, we’ll see what is JSX and how it differs from HTML, and what goes on behind the scenes when using JSX with React. What is JSX? JSX is a syntax extension for JavaScript that le...Discuss·31 readsReact
Smart ShockforSmartShocksmartshock.hashnode.net·Apr 3, 2023Hello World - Introduction to JSXIn this blog post, we'll get started with React by building a simple "Hello, World!" application using JSX. Prerequisites Before we get started, you'll need to have Node.js and npm installed on your computer. You can download them from the official N...Discuss25 React Exercises for Practical LearningReact