Skip to content

Instantly share code, notes, and snippets.

@rpearce
Created August 25, 2015 11:39
Show Gist options
  • Save rpearce/517909fcd369136fba4a to your computer and use it in GitHub Desktop.
Save rpearce/517909fcd369136fba4a to your computer and use it in GitHub Desktop.
Teaching Switches
var str = "great minds think alike";
var output = [];
str.split('').forEach(function(letter) {
switch (letter) {
// your code here
}
});
output.join(''); // should be "grtmndsthnklk"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment