Arrow Function in JavaScript

A passionate Full Stack Software Developer 🚀 having an experience of building Web applications with JavaScript and some other cool libraries and frameworks.
Arrow functions allow us to write shorter function syntax:
let myFunction = (a, b) => a * b
Advantage of arrow functions:
This arrow function reduces lots of code and makes the code more readable.




