Arrow Functions in JavaScript: A Simpler Way to Write Functions 🚀
If you've started learning modern JavaScript, you’ve probably seen this strange-looking syntax:
const add = (a, b) => a + b;
At first glance it might look confusing.But once you understand it, arrow
saurabh31.hashnode.dev6 min read