Skip to content

Latest commit

 

History

History
executable file
·
8 lines (7 loc) · 145 Bytes

File metadata and controls

executable file
·
8 lines (7 loc) · 145 Bytes
var str1 = "Hello";
var str2 = " ";
var str3 = "World!";

console.log(str1 + str2 + str3);
console.log(str1.concat(str2).concat(str3));