0
/ 10
Complete the function joinStrings()
so that it returns a string with all the strings in words
concatenated. You should use sep
as a...
Complete the function joinStrings()
so that it returns a string with all the strings in words
concatenated. You should use sep
as a separator between words. You may assume that the array words
has some elements (it is not empty).
Examples:
joinStringsWSep({"Go","Niners"},"!") -> "Go!Niners"
Your feedback will appear here when you check your answer.