Skip to content

Instantly share code, notes, and snippets.

@corpix
Created March 25, 2012 21:39
Show Gist options
  • Save corpix/2200023 to your computer and use it in GitHub Desktop.
Save corpix/2200023 to your computer and use it in GitHub Desktop.
Get value from object by string
var obj = {
a: {
b: 1
}
}
'a.b.etc'.split('.').reduce(function (obj,i) {
return 'object' == typeof obj ? obj[i] || false : false;
}, obj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment