Arrow Functions in JavaScript: A Simpler Way to Write Functions
When you first learn javascript functions, they usually look like this:
function add(a, b) {
return a + b;
}
This work perfectly. But as JavaScript evolved, developers wanted a shorter and cleane
vishalcodes.hashnode.dev4 min read