Why does this code display SteveJobs without a space in the console?
"Steve" + "Jobs" adds the values together without a spaceconsole.log() never displays spacesSince there's no space in "Steve" or "Jobs", SteveJobs gets printed to the console instead of Steve Jobs.