What's this code going to display in the console?
The number 1 is converted into a string before it's joined with "100". And "100" + "1" results in "1001".
1
"100"
"100" + "1"
"1001"