Skip to content

Instantly share code, notes, and snippets.

@zeptobook
Created June 17, 2020 19:44
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 zeptobook/d56ca69dd2094790dbe1eeac43082727 to your computer and use it in GitHub Desktop.
Save zeptobook/d56ca69dd2094790dbe1eeac43082727 to your computer and use it in GitHub Desktop.
person = null;
console.log(person?.[0]); // undefined
// or
person = ['adam', 'robert'];
console.log(person?.[2]); // undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment