Menu
×
×
Correct!
Exercise:Use a function to combine (concatenate) the two strings:
str1 <- "Hello"
str2 <- "World"
paste(str1, str2)
Not CorrectClick here to try again. Correct!Next ❯str1 <- "Hello" str2 <- "World"(str1, ) |