Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created February 24, 2020 23:20
Show Gist options
  • Save manakuro/2d1ce9ecb9663a72f1365326643ae44f to your computer and use it in GitHub Desktop.
Save manakuro/2d1ce9ecb9663a72f1365326643ae44f to your computer and use it in GitHub Desktop.
const obj = {
foo: {
bar: {
baz: 42,
},
},
};
const baz = obj?.foo?.bar?.baz; // 42
const safe = obj?.qux?.baz; // undefined
const fooValue = myForm.querySelector('input[name=foo]')?.value
// value or undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment