* fix: restructure certifications guide articles * fix: added 3 dashes line before prob expl * fix: added 3 dashes line before hints * fix: added 3 dashes line before solutions
746 B
746 B
title
title |
---|
Use Arrow Functions to Write Concise Anonymous Functions |
Use Arrow Functions to Write Concise Anonymous Functions
Problem Explanation
Again, ES6 is all about making JavaScript more elegant, and for some, more readable.
Anonymous functions, as stated, can be created when you are sure that the function will not be called by name anywhere else.
Hints
Hint 1
Get rid of the function
key word, and plug in this =>
arrow.
Hint 2
Did you get rid of the var
keyword?
Solutions
Solution 1 (Click to Show/Hide)
const magic = () => {
"use strict";
return new Date();
};
As long as you got rid of the var
keyword, you're good.