What is the output of this program?

var a = 5;

a++;

console.log(a);

The output of this program is 6.