Arrow Functions in JavaScript: A Simpler Way to Write Functions
If you have been writing JavaScript for a while, you've probably written functions like this:
function greet(name) {
return "Hello, " + name;
}
That works perfectly fine. But JavaScript has a sho
web-dev-articles.hashnode.dev8 min read