JavaScript bergabung dengan 2 variabel menjadi string

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

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