react-jsx Flashcards
1
Q
What is JSX?
A
JSX is a syntax extension for JavaScript that lets you write HTML-like markup inside a JavaScript file.
JSX stands for Javascript XML and it is a very useful tool for React developers. JSX is an extension of the JavaScript language which provides a way to structure component rendering using syntax similar to HTML. JSX gives us the ability to write HTML elements in Javascript and place them in the DOM by converting the HTML tags into React elements without the need for other methods like createElement() or appendChild().