Arrow Functions in JavaScript: Write Less, Mean More
Introduction
If you've been writing JavaScript for a while, you've almost certainly run into this kind of code:
function add(a, b) {
return a + b;
}
Nothing wrong with it. But modern JavaScript g
blog.sameerbhagtani.dev5 min read