Easy
Understanding JavaScript Increment Operators and Console Output Basics
What will be the output of the following code?
1let x = 5;2x++;3console.log(x)4console.log('hello world');
What will be the output of the following code?
1let x = 5;2x++;3console.log(x)4console.log('hello world');