« All deprecation guides
Deprecation Guide for Ember.create
Ember.create
is deprecated in favor for Object.create
. For more information
regarding Object.create
, please
read the MDN documentation.
Please change this:
const doug = Ember.create({
firstName: 'Doug'
});
to
const doug = Object.create({
firstName: 'Doug'
});