0
Need Help (JavaScript)
New to programming. Can anybody help me out with the output to this JavaScript problem? let x = 10; console.log(--x);
2 Answers
+ 5
The operation ââxâ means that first will be decremented 1 from the variable x and after that will be outputed with console.log. So the result is 9.
0
More details, the question is not clear, I don't see problems



