javascript join 2 variables into string

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

// outputs "hello world!"
console.log(A + B);
Source

Also in JavaScript: