Skip to content

Instantly share code, notes, and snippets.

@GedMullen
Created November 4, 2015 00:01
Show Gist options
  • Save GedMullen/3c136f5c7b7502fe8dd8 to your computer and use it in GitHub Desktop.
Save GedMullen/3c136f5c7b7502fe8dd8 to your computer and use it in GitHub Desktop.
function createUsername(firstName, secondName) {
var username = firstName[0] + secondName;
console.log("Hi " + username);
};
createUsername("john", "smith");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment