Skip to content

Instantly share code, notes, and snippets.

@aiya000
Created March 6, 2021 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aiya000/49f229c4011339d79a33ee5035ead4cd to your computer and use it in GitHub Desktop.
Save aiya000/49f229c4011339d79a33ee5035ead4cd to your computer and use it in GitHub Desktop.
const x: { x: number } | null = { x: 10 }
console.log(x.x) // no errors
const y: { x: number } | null = null
console.log(y.x) // 2531: Object is possibly 'null'.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment