Skip to content

Instantly share code, notes, and snippets.

@dadamssg
Created April 15, 2015 16:31
Show Gist options
  • Save dadamssg/4e0e0fc53c4ae517bfa5 to your computer and use it in GitHub Desktop.
Save dadamssg/4e0e0fc53c4ae517bfa5 to your computer and use it in GitHub Desktop.
var obj = {
some: {
nexted: {
property: "foobar"
}
}
};
var x = Ember.get(obj, 'some.nested.property'); // i want x equal to "foobar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment