Skip to content

Instantly share code, notes, and snippets.

@aiya000
Created November 26, 2020 04:06
Show Gist options
  • Save aiya000/9f19241465a2ebf951c0433ad0c93531 to your computer and use it in GitHub Desktop.
Save aiya000/9f19241465a2ebf951c0433ad0c93531 to your computer and use it in GitHub Desktop.
// not nullish
function f(): number {
return 10
}
const x = f() ?? 20 // but ?? can use
console.log(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment