Return to site
⚛️REACT quiz: What is the JavaScript syntax extension commonly used to create React elements?
⚛️REACT quiz: What is the JavaScript syntax extension commonly used to create React elements?
·
* React JavaScript
* JSX
* JavaScriptX
* HTML
For example:
const element =
Hello, world!
;
JSX is not a requirement for React, but it is a popular choice and widely used in the React community. When your code is built, the JSX syntax transforms into regular JavaScript code that can run in any JavaScript environment.