Skip to content

Instantly share code, notes, and snippets.

@martywallace
Created September 10, 2015 01:43
Show Gist options
  • Save martywallace/066cb5af450a21351a37 to your computer and use it in GitHub Desktop.
Save martywallace/066cb5af450a21351a37 to your computer and use it in GitHub Desktop.
function userEntry(callback) {
callback && callback(prompt("Please enter your name here."));
}
userEntry(function(name) {
firstUserEntry = name;
console.log(firstUserEntry);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment