JavaScript Junte -se 2 variáveis em string
A = 'hello ';
B = 'world!';
// outputs "hello world!"
console.log(A + B);
Frightened Fish
A = 'hello ';
B = 'world!';
// outputs "hello world!"
console.log(A + B);