logo CodeStepByStep logo

arrayMystery8

Language/Type: JavaScript arrays array mystery

What are the resulting values of the following arrays after passing each as an argument to the function below?

function arrayMystery8(a) {
    for (let i = 0; i < a.length - 1; i++) {
        if (a[i] > a[i + 1]) {
            let temp = a[i];
            a[i] = a[i + 1];
            a[i + 1] = temp;
            a[0]++;
        }
    }
}
[5, 2, 5, 2]
[30, 10, 20, 50, 40]
[99, 88, 77, 66, 55, 44]

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.