This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Returns a string with inversed cases | |
* @param {String} string The 'string' to inverse the cases of its characters | |
*/ | |
const caseInverse = string => string.split('').map(letter => letter.toUpperCase() === letter ? letter.toLowerCase() : letter.toUpperCase()).join(''); | |
module.exports = caseInverse; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Returns a string with inversed cases | |
* @param {String} string The 'string' to inverse the cases of its characters | |
*/ | |
const caseInverse = string => { | |
let inversedString = ''; | |
for (const letter of string) { | |
if (letter.toUpperCase() === letter) { | |
inversedString += letter.toLowerCase() | |
} else { |