Skip to content

Instantly share code, notes, and snippets.

@sethschori
Last active July 31, 2016 19:04
Show Gist options
  • Save sethschori/345aff625a323a87c70d1b7ef7eeda4e to your computer and use it in GitHub Desktop.
Save sethschori/345aff625a323a87c70d1b7ef7eeda4e to your computer and use it in GitHub Desktop.
// Use the various String methods we learned today to get the function to
// print 'Fullstack Academy of Code'
var printFullstack = function() {
var starterString = 'I made no lack of good code';
return starterString.charAt(16).toUpperCase() + "u" + starterString.charAt(10) + starterString.charAt(10) + "stack Academy of C" + starterString.slice(24);
}
console.log(printFullstack());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment