Advertisement
JcGNeon

concatenation.js

Jan 27th, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var first_word = "Hello,";
  2. var a_space = " ";
  3. var last_word = "world!";
  4.  
  5. // you can also initialize a variable with the result of the concatenation
  6. var a_sentence = first_word + a_space + last_word;
  7.  
  8. console.log(a_sentence);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement