Guest User

Untitled

a guest
Jun 14th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // Example one
  2. var str = "some string";
  3. str += "concatenation" + "another concatenation";
  4.  
  5. // Example two
  6. var str = "some string";
  7. str = str + "concatenation" + "another concatenation";
Add Comment
Please, Sign In to add comment