Answer (Choose 1 answer)
Consider the below function - which is the correct syntax of arrow function?
Msg = function() { return "Good Morning";}
A. Msg = () => {return "Good Morning";}
B. Msg = () => "Good Morning";
C. Both A and B.
D. None of the above
9