Skip to content

Instantly share code, notes, and snippets.

@mlevkovsky
Created July 20, 2019 21:08
Show Gist options
  • Save mlevkovsky/845f572f7af6b6f71f78e16b124cdb89 to your computer and use it in GitHub Desktop.
Save mlevkovsky/845f572f7af6b6f71f78e16b124cdb89 to your computer and use it in GitHub Desktop.
magic strings
public getName(): string {
let result = "NO NAME FOUND";
if(this.name) {
result = this.name;
}
return result;
}
export class User {
private readonly NAME_DEFAULT = "NO NAME FOUND";
private name;
public getName(): string {
let result = this.NAME_DEFAULT;
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