✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Look at the following JavaScript code:
var a=2;var b=4;function resetValues() { var a=5; b=10;}resetValues();
Which of the following statements would be true after this code was executed?