Last active
July 31, 2016 19:04
-
-
Save sethschori/345aff625a323a87c70d1b7ef7eeda4e to your computer and use it in GitHub Desktop.
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
// 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()); |
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
Fullstack Academy of Code |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment