JavaScript соединить 2 переменные в строку

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

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