0
/ 10
Complete the function joinStrings()
so that it returns a string with all the strings in words
concatenated. You may assume that the array...
Complete the function joinStrings()
so that it returns a string with all the strings in words
concatenated. You may assume that the array words
has some elements (it is not empty).
Examples:
joinStrings({"Register","And","Vote"}) -> "RegisterAndVote"
Your feedback will appear here when you check your answer.