Created
February 8, 2021 10:36
-
-
Save themarcba/70377c91490289ddfc00208f62913856 to your computer and use it in GitHub Desktop.
Convert any text in "sarcasm text"
This file contains hidden or 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
const toRandom = c => Math.random() > 0.5 ? c.toUpperCase() : c.toLowerCase() | |
const toSarcasm = text => text.split('').map(c => toRandom(c)).join('') | |
console.log(toSarcasm('This is a sarcastic message')); //ThIS Is A SarcAstiC mesSAgE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment