Arrow Functions in JavaScript: A Simpler Way to Write Functions
Introduction:
If you have written JavaScript functions before, you might have noticed that they sometimes require a lot of boilerplate.
For example,
function(a, b){
return a + b;
}
This works pe
durgaxcodes.hashnode.dev3 min read