Skip to content

Instantly share code, notes, and snippets.

@ksol
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save ksol/9fa58d3ee44418971dd6 to your computer and use it in GitHub Desktop.

Select an option

Save ksol/9fa58d3ee44418971dd6 to your computer and use it in GitHub Desktop.
var a = null;
var b; // undefined
a.get('myprop')
// Uncaught TypeError: Cannot read property 'get' of null
Ember.get(a, 'myprop');
// <- undefined
Ember.get(b, 'myprop');
// Uncaught EmberError: Assertion Failed: Cannot call get with 'myprop' on an undefined object.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment