Arrow Functions: Writing JavaScript the Modern Way
What Are Arrow Functions?
Arrow functions are a shorter way to write function expression in JavaScript.
In normal function we write like
function add(a, b){
return a + b;
}
But in Arrow function
javascriptwithmith.hashnode.dev3 min read