Q. Consider the following code snippet
Code:
let succ = function(x) x+1, yes = function() true, no = function() false;
β
Correct Answer: (A)
Functional behaviour
let succ = function(x) x+1, yes = function() true, no = function() false;
You must be Logged in to update hint/solution