Hello, World

Report a typo

Take a look at the following code snippets and select the one that will render the following element:

<h1>Hello, World</h1>

A)

const name = 'World';
const element = <h1>Hello, {name}</h1>;

B)

const name = 'World';
const element = <h1>Hello, {"name"}</h1>;

C)

const name = 'World';
const element = <h1>Hello, name</h1>;

D)

const name = 'World';
const element = <h1>Hello, {{name}}</h1>;
Select one option from the list
___

Create a free account to access the full topic