Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Created September 17, 2019 04:07
Show Gist options
  • Save djD-REK/f4123eba45c04c5fbef4892f6df78344 to your computer and use it in GitHub Desktop.
Save djD-REK/f4123eba45c04c5fbef4892f6df78344 to your computer and use it in GitHub Desktop.
const getEmail = username => `${username}@gmail.com`
function getUser (username) {
const email = getEmail(username)
return {
username,
email
}
}
console.log(getUser("MrRoboto")) // Object { username: "MrRoboto", email: "[email protected]" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment