# What is JSX?

  • JSX stands for JavaScript XML.
  • Allows us to write HTML elements in JavaScript and place them in the DOM without any createElement() and/or appendChild() methods.
  • Converts HTML tags into react elements.

TIP

You are not required to use JSX, but JSX makes it easier to write React applications.