Arrow functions were introduced in ES6. It behaves differently from the traditional functions of Javascript. Syntax const functionName = (parameters) => { //function body } const getName = (age) => { let name = 'Bobby'; return `${name} is...
bobby-sadhwani.hashnode.dev4 min read
No responses yet.