Created
December 17, 2019 18:28
-
-
Save carlrip/18d050c168e2e1af5b4ad50ff7b0f573 to your computer and use it in GitHub Desktop.
Nullish coalescing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getPersonScore(id: number): number { | |
const person: Person = getPerson(id); | |
return person.score ?? 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment