SyntaxFix
Write A Post
Hire A Developer
Questions
You can also keep adding strings to an existing string like so:
var myString = "Hello "; myString += "World"; myString += "!";
the result would be -> Hello World!
Hello World!