Skip to content

Instantly share code, notes, and snippets.

@zeptobook
Created June 23, 2020 18:05
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/d678b47c4ea825829dc0be1fd11f925c to your computer and use it in GitHub Desktop.
Save zeptobook/d678b47c4ea825829dc0be1fd11f925c to your computer and use it in GitHub Desktop.
const foo = null ?? 'default string';
console.log(foo);
// expected output: "default string"
const baz = 0 ?? 42;
console.log(baz);
// expected output: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment