React JSX Flashcards
1
Q
What is JSX ?
A
JSX is a JavaScript Extension Syntax used in React to easily write HTML and JavaScript together.
2
Q
What tool do we use to convert JSX to a format the browser can understand?
A
Babel which is a JavaScript compiler/transpiler
3
Q
What does JSX get converted into? clue - there are 2 conversions.
A
JSX is converted to a React.createElement call and it’s then converted to its object representation.
4
Q
A