Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
30 lines (20 loc) · 580 Bytes

File metadata and controls

30 lines (20 loc) · 580 Bytes
Copy raw file
Download raw file
Outline
Edit and raw actions

join

Add one text string to another to make one bigger string.

let text ="";
text + "string";

Returns

  • a string that contains all the text from one string, with the text from another string added to it.

Examples

Combine text

Add the text of two strings to make another new string.

let combinedText = "This text is added to" + "this other text.";

Grow a string

Add more text to the same string to make it grow.

let addedText = "The first part";
addedText = addedText + " plus the second part."; 
Morty Proxy This is a proxified and sanitized view of the page, visit original site.