React.js:
React is is a open source library developed by Facebook (meta).
It is used for building user interface (UI), especially with single page Applications (SPA). React is a component based library, when UI is broken down into reusable building blocks. It is uses for virtual Dom like faster rendering and better performance.
Javascript:
JavaScript is a programming language used for web development to add interactivity,logic and functionality.It works in browsers(Servers like Node.js).
Syntax. Pure Java Script follows by ECMAScript (E36+) Standards.
JSX (JavaScript XML):
JSX is a syntax extension for JavaScript used with react compiled with Syntax HTML tags inside the JavaScript code. It works with HTML for JavaScript used tools for Babel in UI Structure in react.
JSX allows us to write HTML elements in JavaScript and place them in the DOM without any createElement() and/or appendChild() methods.
JSX converts HTML tags into react elements.
Top comments (0)