Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save claudiainbytes/2152494bd7a70fe1c93c6a85bfb68e03 to your computer and use it in GitHub Desktop.
Save claudiainbytes/2152494bd7a70fe1c93c6a85bfb68e03 to your computer and use it in GitHub Desktop.
var s = "audacity";
var udacityizer = function(s) {
// Right now, the variable s === "audacity"
// Manipulate s to make it equal to "Udacity"
// Your code goes here!
s = s.charAt(1).toUpperCase() + s.slice(2);
return s;
};
// Did your code work? The line below will tell you!
console.log(udacityizer(s));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment