Skip to content

Instantly share code, notes, and snippets.

@Joe1220
Created September 13, 2018 08:44
Show Gist options
  • Select an option

  • Save Joe1220/f55e138f53d7211205d424dedaa4a615 to your computer and use it in GitHub Desktop.

Select an option

Save Joe1220/f55e138f53d7211205d424dedaa4a615 to your computer and use it in GitHub Desktop.
function create_mail(id: string, name: string, address: string, wait: boolean): string {
return `${name}'s id is ${id}. his email address is ${address}.
The email will be determined based on the wait(${wait}) value. `
};
create_mail("1", "joe1220", "joe1220@daum.net", false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment