FAQ: Advanced JSX - class vs className

This community-built FAQ covers the “class vs className” exercise from the lesson “Advanced JSX”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Web Development

Learn ReactJS: Part I

FAQs on the exercise class vs className

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

For some reason the instructions say 1. “Lemonade was a popular drink”
2. “Lemonade was a popular drink”

I have to run the code in order to get the real instructions of the lesson… Is that how it’s suppose to be?

Thanks.

Kei

no try refreshing the page

On step 2 it asks us to write document.getElementById('app')

but why ‘app’? We didn’t give any element an id of ‘app’?

I am trying to figure this out as well, super weird. Why is it not ‘big’, the actual className of our div.

import React from 'react';
import ReactDOM from 'react-dom';

// Write code here:
var myDiv = (
  <div className="big">I AM A BIG DIV</div>
);

ReactDOM.render(
  myDiv,
  document.getElementById('app')
)

Can anyone share their knowledge on this?

In the top-left corner of the editor, there is a folder icon. If you click on it, you will see a file index.html. Open the file and you will see which element is being targeted by ReactDOM.render

<body>
  <main id="app"></main>
  ...
1 Like