Skip to content

Instantly share code, notes, and snippets.

@themarcba
Created February 8, 2021 10:36
Show Gist options
  • Save themarcba/70377c91490289ddfc00208f62913856 to your computer and use it in GitHub Desktop.
Save themarcba/70377c91490289ddfc00208f62913856 to your computer and use it in GitHub Desktop.
Convert any text in "sarcasm text"
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