logo CodeStepByStep logo

recursionMystery3

Language/Type: JavaScript recursion mystery
Author: Melissa Hovik (on 2016/09/25)

For each call to the following function, indicate what value is returned:

function mystery3(n) {
    if (n <= 1) {
        return "*";
    } else if (n == 2) {
        return mystery3(n - 1) + "*";
    } else {
        return "(" + mystery3(n - 2) + ")";
    }   
}
mystery3(0);
mystery2(2);
mystery2(3);
mystery2(6);
mystery2(9);

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.