JavaScript Tutorial - Strings
A string is a collection of text and we have to surround our string in quotation marks. JavaScript String Concatenation We could join two strings with the operator +. var exampleString = 'Hello ' + 'World'; // "Hello World" String concatenation could be done also between string and numbers. var x = 'My age is ' + 27; // "My age is 27". String Method Strings are objects like any other object in JavaScript.