alan2321
contestada

word1 = "rain"
word2 = "bow"

What is the correct way to concatenate the strings?

a
newWord = word1 == word2
b
newWord = word1 + word2
c
newWord = word1 * word2
d
newWord = word1 - word2

Respuesta :

Answer:

B NewWord = word1 + word2

Explanation:

i did the quiz

the correct answer is b