17.
What does JSX stand for in the context of React?
JavaScript XML
JavaScript EXtension
JavaScript Syntax eXpression
JavaScript eXecutable
Correct: A
JSX stands for JavaScript XML (eXtensible Markup Language) and is a syntax extension for JavaScript. It allows you to write HTML-like code directly in your JavaScript files, making it easier to create and manipulate the UI components in React. JSX syntax is then transpiled into regular JavaScript code that the browser can understand.