#interview_question

function getValue(a) {

return a++;

}



console.log(getValue(7));



Что увидим в консоли?