Arrow Functions
Arrow functions allow us to write shorter function syntax:
Example
Before:
hello = function() { return "Hello World!"; }
Arrow functions allow us to write shorter function syntax:
Before:
hello = function() { return "Hello World!"; }