...) to convert str into an array of characters.String.prototype.toLowerCase() and String.prototype.toUpperCase() to convert lowercase characters to uppercase and vice versa.Array.prototype.map() to apply the transformation to each character, Array.prototype.join() to combine back into a string.swapCase(swapCase(str)) === str.const swapCase = str => [...str] .map(c => (c === c.toLowerCase() ? c.toUpperCase() : c.toLowerCase())) .join('');
swapCase('Hello world!'); // 'hELLO WORLD!'Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️