JavaScript Junte -se 2 variáveis ​​em string

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

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