Solución
solution.tsTypeScript
export function intercalateChars(first: string, second: string): string {
let word = ""
for(let i = 0; i < first.length || i < second.length; i++) {
word += (first[i] || "") + (second[i] || "")
}
return word;
}0respuestas