logo CodeStepByStep logo

variableMystery5

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

What are the values of the variables one and two after the following code executes?

let one = 8;
let two = 19;
one = two + one;
two = one - two;
one = one * (two / 2);
one
two

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.