Dujs
Results
1
comments of
Dujs
const reverseCase = s=>s.split('').reduce((t,c)=>`${t}${c.toUpperCase() === c?c.toLowerCase():c.toUpperCase()}`,'')