Sunday, 20 August 2017

What is JSX ?

The XML syntax inside JavaScript is called JSX. Just like XML, JSX tags have tag name, attribute and Children.
JSX code by itself cannot be read by the browser; it must be transpiled into traditional JavaScript using tools like Babel and webpack.

No comments:

Post a Comment

What is diffing algorithm?

  React needs to use algorithms to find out how to efficiently update the UI to match the most recent tree. The diffing algorithms is genera...