Questions:
What is JSX?
JSX is the core of React JS and inteviewers ask this question to get to know if you understand how React JS merges the Javascript and HTML.
Sample Answer:
JSX stands for Javascript XML. JSX allows you to write HTML-like code inside the Javascript. It transforms your component into a more readable and well expressive but at the backend behind the scenes, all the JSX code are transpired into React.createElement() that generate virtual DOM elements.