Want to receive Question of the Day updates? Subscribe Here
JavaScript Question of the Day
Jan. 7, 2025
IncorrectCorrectNo Answer was selectedInvalid Answer
What is printed to the console when the following program is run?
functionmain(){let a =5;let b =10;let c =15;printValues(a, b, c);}functionprintValues(third, first, second){
console.log(first);
console.log(second);
console.log(third);}main();