What are Arrow functions in JS?

What are Arrow functions in JS?

arrow function helps us in writing shorter function syntax:
for.e.g
hello = () => { return "Hello World!"; }

2 Likes