JS

JavaScript Code Output Challenge - what will be th...

31.

What will be the output of the following code?

let x = 5;
console.log(x++);

Syntax Error

4

6

5