Нужна помощь в решении этой проблемы:
// If the input is empty, return an empty string
join([]) // ''
// If there is no separator, separate by commas
join([ 'a', 'b', 'c' ]) // 'a,b,c'
// If there is a separator, separate by that string
join([ 'a', 'b', 'c' ], '-') // 'a-b-c'
// If there is only one item, return just that item
join([ 'a' ], '---') // 'a'
Здесь должен работать следующий код:
function join (array, separator) {
// your code here
}
У меня есть код для первой проблемы:
let result = ""
if(array.length === 0){
return ""