CodeNewbie Community 🌱

Cover image for JSX for beginners (and how it differs from HTML)
𝐁𝐚𝐛𝐢 ✨
𝐁𝐚𝐛𝐢 ✨

Posted on

JSX for beginners (and how it differs from HTML)

What is JSX

JSX or JavaScript XML is an extension of JavaScript used to write React components.

For example, consider this code snippet below gives an illustration of what JSX typically looks like

const greet = <h1>Hello World</h1>;
Enter fullscreen mode Exit fullscreen mode

So JSX permits us write Javascript and HTML together. However, unlike HTML and Javascript, JSX cannot be interpreted by browsers so it needs a compiler (Babel or Webpack) to transpile it to Javascript

Why use JSX

The very first thing you should know is that JSX is not a necessity. You can write React code without it.

Then why use it? Why mix the logic and the markup? JSX is syntactic sugar. It is designed to make things easier to read and express

For example: Consider a JSX expression

<p color="red" shadowSize={2}>I'm a random sentence</p>
Enter fullscreen mode Exit fullscreen mode

It is compiled by Babel to

React.createElement(
  "p",
  {color: 'red', shadowSize: 2},
  "I'm a random sentence"
)
Enter fullscreen mode Exit fullscreen mode

The later snippet is obviously less pretty 😀

How JSX differs from HTML

1. Self-closing tags

In HTML, it's okay to write self-closing tags without closing them e.g. <hr /> can be <hr>. This is not permitted in JSX. All tags must be closed.

Also, all tags can be self-close e.g. <div />

2. Adding JavaScript expressions

JavaScript can be added directly into JSX markup using curly braces {...}

{/* Output: Everybody knows 1 + 1 = 2 */}
<p> Everybody knows 1 + 1 = {1+1}<p>
Enter fullscreen mode Exit fullscreen mode

So no need for the <script> tag HTML uses

3. HTML attributes change naming conventions

Remember JSX is writing HTML in JavaScript so certain HTML attributes like class and for which are keyword in JavaScript have to change to className and hmtlFor respectively. Take note of the use of camelCasing in the naming convention.

All JSX attributes follow the camelCase naming convention. So background-color becomes backgroundColor

4. Inline CSS is an object

In HTML, you can directly add your inline CSS styles in the opening tag. However, this is not so in JSX. Here, you pass an object
For example Consider this HTML snippet

<p style="color:red;font-size:14px">Hello there!</p>
Enter fullscreen mode Exit fullscreen mode

In JSX, it could be written as

cont Greet = function() {
  const myStyles = {
    color:"red";
    fontSize:"14px";
    }
  return <p style={myStyles}>Hello there!</p>;
}
Enter fullscreen mode Exit fullscreen mode

OR

return <p style={{color:"red", fontSize:"14px"}}>Hello there!</p>;
}
Enter fullscreen mode Exit fullscreen mode

I'm currently learning React. While transitioning from writing HTML to JSX, I found some key concepts and difference that everyone should be aware of. This is me just documenting my notes. Hope you found it helpful 😊


Header image credit: patterns.dev

Oldest comments (4)

Collapse
 
mckennabramble profile image
McKenna Bramble

Hi Babi! Thanks for posting this! I am also learning React, and any tips and tricks are really helpful. 🙂

Collapse
 
babib profile image
𝐁𝐚𝐛𝐢 ✨

Hello McKenna 👋. I'm glad you found this helpful 😁.

I usually blog what I learn on dev.to. I'll start sharing my content here too!

Collapse
 
kings5660 profile image
Kingsley

Please keep sharing your content. It's very helpful. Thank you

Collapse
 
babib profile image
𝐁𝐚𝐛𝐢 ✨

I'm glad you found it helpful