What is the output of this program?
var a = 5;
a++;
console.log(a);
(1 point)
Responses
5
5
6
6
7
7
a
a
1 answer
The output of this program is 6.
var a = 5;
a++;
console.log(a);
(1 point)
Responses
5
5
6
6
7
7
a
a
1 answer