Answers for "javascript join 2 variables into string"

0

javascript join 2 variables into string

A = 'hello ';
B = 'world!';

// outputs "hello world!"
console.log(A + B);
Posted by: Guest on October-04-2020

Code answers related to "javascript join 2 variables into string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language