Skip to content

Instantly share code, notes, and snippets.

@khaosdoctor
Created September 11, 2017 18:57
Show Gist options
  • Save khaosdoctor/a890b2060a6e57ad773973ffd67fd356 to your computer and use it in GitHub Desktop.
Save khaosdoctor/a890b2060a6e57ad773973ffd67fd356 to your computer and use it in GitHub Desktop.
var object = { a: [{ b: { c: 3} }] }
var res = null
if (!object.a.length > 0 || !object.a[0].b || !object.a[0].b.c) {
 res = ‘default’
}
res = object.a.shift().b.c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment