Why does this code display SteveJobs without a space in the console?

Because "Steve" + "Jobs" adds the values together without a spaceBecause console.log() never displays spaces

Since there's no space in "Steve" or "Jobs", SteveJobs gets printed to the console instead of Steve Jobs.