JavaScript une 2 variables en la cadena

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

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