Arrow Functions in JavaScript: A Simpler Way to Write Functions
When I first started writing JavaScript, my functions looked like this:
function add(a, b) {
return a + b;
}
Nothing wrong with it. It works perfectly.
But after some time you start seeing this eve
devnotez.hashnode.dev4 min read