function solution(s) {
let sSplit = s.split(' ').map((value)=>{
let answer = value.split('').map((value,index)=>{
return index % 2 === 0 ? value.toUpperCase() : value.toLowerCase()
})
return answer.join('')
})
return sSplit.join(' ')
}
function solution(s) {
let sSplit = s.split(' ')
let bucket = [];
for (let i=0; i<sSplit.length; i++){
let ssSplit = sSplit[i].split('').map((value,index)=>{
return index % 2 === 0 ? value.toUpperCase() : value.toLowerCase()
})
bucket.push(ssSplit.join(''))
}
return(bucket.join(' '))
}