To concatenate two strings, "Hello" and "World", what is the correct method?
const str1 = "Hello"; const str2 = "World";
str1.add(str2)
str1 + str2
str1.concat(str2)
str1.append(str2)