Arrow Functions in JavaScript: A Simpler Way to Write Functions
The first time many developers see this:
const add = (a, b) => a + b;
…it feels strange.
Where is the function keyword? Where are the braces?
But after using arrow functions for a few days, regular fu
adityatomar07879.hashnode.dev3 min read