You have already completed these exercises!
Do you want to take them again?
You completed the JS Arrow Function Exercises from W3Schools.com
Share on:
Which one of the following is a correct JavaScript arrow function?
greeting => 'Hello World!';
greeting = return => 'Hello World!';
greeting = () => 'Hello World!';