JavaScript Dołącz 2 zmienne w ciągu

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

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