can arrow functions have a name? code example
Example 1: Arrow Functions
// The usual way of writing function
const magic = function() {
return new Date();
};
// Arrow function syntax is used to rewrite the function
const magic = () => {
return new Date();
};
//or
const magic = () => new Date();
Example 2: name arrow function
//Long version
function add(a, b) {
return a + b;
}
// Shorthand
const add = (a, b) => a + b;