Vidyalelo
JavaScript · Q59

Classes And Modules

Programming · JavaScript · question 59

Q59

Consider the following code snippet let succ = function(x) x+1, yes = function() true, no = function() false; What convenience does the above code snippet provide?

A.
Functional behaviour
Answer
B.
Modular behaviour
C.
No convenience
D.
Shorthand expression

Answer: Option A

Solution

Answer: Option A
Solution:
The functions defined in this way behave exactly like functions defined with curly braces and the return keyword.