Javasrcipt level 3 lesson 3
I am trying to increment the variable p by one and it doesn't seem to work regardless of what i try.
ex.
let p = 12++;
console.log(p);
This returns 12.
ex.
let p = 12;
console.log(p++);
This returns invalid left-hand side expression in postfix operation.
I am confused.