Skip to content

Instantly share code, notes, and snippets.

@jpitchardu
Last active May 23, 2018 16:28
Show Gist options
  • Save jpitchardu/3b956764ebbfe28c5677c3faf9b9bf11 to your computer and use it in GitHub Desktop.
Save jpitchardu/3b956764ebbfe28c5677c3faf9b9bf11 to your computer and use it in GitHub Desktop.
Default value with null-checking in javascript
const evaluation = obj && obj.prop1 && obj.prop1.prop2 && obj.prop1.prop2.prop3;
console.log( evaluation != null ? evaluation : "SomeDefaultValue" ); // => "SomeDefaultValue"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment