React ES6 Arrow Functions

Arrow Functions

Arrow functions allow us to write shorter function syntax:

Example

Before:

hello = function() {
  return "Hello World!";
}

 

Continue reading React ES6 Arrow Functions