JavaScript Arrow Functions — A Beginner's Guide to Writing Cleaner Code
If you've been writing JavaScript for even a little while, you've probably stumbled across code that looks like this:
const greet = name => `Hello, ${name}!`;
And thought — wait, where's the function
manasdevjs.hashnode.dev7 min read