Want to receive Question of the Day updates? Subscribe Here
JavaScript Question of the Day
Jan. 28, 2025
IncorrectCorrectNo Answer was selectedInvalid Answer
In the following program, which are the global variables?
constAMOUNT=2;functionmain(){let original =20;let newNum =conversion(original,AMOUNT);
console.log(newNum);}functionconversion(num, rate){let result =6* num ** rate;return result;}main();