Arrow Function in JavaScript
The arrow function is introduced in ES6 which is a more straightforward form of the traditional function we used. While both functions work in the same manner.Example of arrow function:
const arrowFunction = () => 'This is Arrow Function';
arrowFunct...
kirti-singh.hashnode.dev2 min read