Arrow Functions in JavaScript: A Simpler Way to Write Functions
What are Arrow Function ?
Arrow Function is a modern way to write function, its basically has shortened the function boilerplate to smaller and faster way.
// Normal Function
function add(a, b) {
re
what-is-arrow-function.hashnode.dev2 min read