Join two words
This page needs a recent browser (with SharedArrayBuffer support). Please update Chrome, Edge, Firefox or Safari to the latest version.
Join two words
+ also joins text. "Hi " + "Sam" becomes Hi Sam. Keep the space after Hi.
Use + to join words. Show Hi Sam: print("Hi " + "Sam"). Keep the space after Hi.
Click Run to see the output here.