Skip to content

Instantly share code, notes, and snippets.

@rawnly
Created August 27, 2018 10:27
Show Gist options
  • Save rawnly/16777a9e6ebd9d7d4ee8b01ae2c25bf2 to your computer and use it in GitHub Desktop.
Save rawnly/16777a9e6ebd9d7d4ee8b01ae2c25bf2 to your computer and use it in GitHub Desktop.
const swapCase = (str) => str.split('').map(char => {
if ( char.toLowerCase() == char ) return char.toUpperCase()
if ( char.toUpperCase() == char ) return char.toLowerCase()
return char;
}).join('')
// Usage
swapCase("Hello World") //=> "hELLO wORLD"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment