GitbookIO/javascript

Why am i adding the + " " +

aTherkildsen opened this issue · 1 comments

I can't figure out, why the (.." "..) is needed in ( firstName + " " + Last name )

@aTherkildsen Without the + " " + the concatenated name would be JamesSmith (all attached), but what you want is James Smith. (So that's why you need to add that extra little space in the middle)