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?
let succ = function(x) x+1, yes = function() true, no = function() false;
A. Functional behaviour
B. Modular behaviour
C. No convenience
D. Shorthand expression
Answer: Option A

Join The Discussion