Easy
This question is a daily question and will count towards your daily streak.
What will be the output of the following code?
1let x = 5;2x++;3console.log(x)4console.log('hello world');
1let x = 5;2x++;3console.log(x)4console.log('hello world');