React.js – Understanding JSX

Hey guys 👋🏻,
In this post, let us learn what JSX is in React and why it is important for us as React developers to understand it.

pxogniwdxp9s31063jvq-2857079

In this post, let us understand

✔ What is JSX ?✔ Example of JSX✔ JSX code being equivalent to React.createElement calls.

✔ JSX Restrictions

What is JSX ?

JSX is a syntax extension to JavaScript. It is used to write HTMLish code in JavaScript files which later gets transpiled to normal JavaScript by our development workflow.

Example of JSX

8m85vhghflvem3s5pjcz-4403714

In the above example, you can see we are returning HTMLish kind of code from our component function. personName is a variable that we are interpolating right inside the template of our component. This in the end gets transpiled to JavaScript.

Before Transpilation

8m85vhghflvem3s5pjcz-4403714

After Transpilation

du4p7eot77dgy4gji72z-9327476

JSX code is nothing but multiple calls to the React.createElement method to build up the HTML for our component.

JSX Restrictions

  1. It allows us to write HTMLish code that we write in JavaScript files.
  2. It enforces restrictions on some keywords that we cannot use like classfor etc that are reserved keywords in JavaScript. We have equivalents for them though.
  3. JSX expression must have exactly one root element and it is under this root element that you nest your JSX code.

So this is it for this article. Thanks for reading.
Don’t forget to leave a like if you loved the article. Also share it with your friends and colleagues.

3qpl01uwp1qlmbqkhfpm-5055789

Previous Post
Next Post