Skip to content

Instantly share code, notes, and snippets.

@mlevkovsky
Last active July 20, 2019 20:48
Show Gist options
  • Save mlevkovsky/2c8e972972fed8ac1d908668e5ee0b7f to your computer and use it in GitHub Desktop.
Save mlevkovsky/2c8e972972fed8ac1d908668e5ee0b7f to your computer and use it in GitHub Desktop.
public getName(): string {
let result = "NO NAME FOUND";
if(this.name) {
result = this.name;
}
return "NO NAME FOUND";
}
public getName(): string {
let result = "NO NAME FOUND";
if(this.name) {
result = this.name;
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment