JSX stands for JavaScript XML

It allows us to write HTML elements in React and place them in the DOM without any createElement() and/orappendChild() methods.JSX also converts HTML tags into react elements and makes it easier to write.

BY Best Interview Question ON 05 Nov 2020

Example

const myelement = <h1>React Interview Questions</h1>;
ReactDOM.render(myelement, document).