FlySnails
Results
1
comments of
FlySnails
ES6来一波 ``` const transFormStr = (str) => { return str.split('').map(c => c = c === c.toUpperCase() ? c.toLowerCase() : c.toUpperCase()).join(''); }; ``` console.log(transFormStr('AbC'))