Debugging Promises The Inspector provides a way to look at all Promises created in your application. Click on the Promises menu
Disabling Prototype Extensions By default, Ember.js will extend the prototypes of native JavaScript objects in the following ways:
Passing Properties to a Component Components are isolated from their surroundings, so any data that the component needs has to be passed in
Objects in Ember You'll notice standard JavaScript class patterns and the new ES2015 classes aren't widely used in Ember. Plain objects can
Finding Records The Ember Data store provides an interface for retrieving records of a single type.
Testing Models Unit testing methods and computed properties follows previous patterns shown in Unit Testing Basics because DS.Model extends
Conditionals Statements like if and unless are implemented as built-in helpers. Helpers can be invoked three ways
Redirecting Sometimes you want to redirect a user to a different page than what they requested for. For example
Customizing a Component's Element By default, each component is backed by a <div> element. If you were to look at a rendered
Enumerables In Ember.js, an enumerable is any object that contains a number of child objects, and which allows you to work with those children
Page 6 of 10