arrow functions
arrow functions are shorter syntax instead of using conventional way to write function.
eg -
const sum = (a,b) => { return a+b; }
console.log(sum(5,6));
To make it even more shorter ->
const sum = (a,b) => a+b;
console.log(sum(5,7));
So if the arro...
santan-das.hashnode.dev1 min read