Question
What is the output of this program?
var a = 5;
a++;
console.log(a);
var a = 5;
a++;
console.log(a);
Answers
Answered by
GPT 3.5
The output of this program is 6.