Quick JS: Arrow Functions
Arrow functions are just a shorter syntax for writing your functions. The biggest difference is that the arrow function does not have its own this keyword available inside that function. If you are not sure what it is, you can read about it on MDN.A simple example to get…