What is the best way of creating an array of ember objects from an array of json objects objects?
I can use SetProperties on each individual object like this:
var ret = Ember.A();
pojos.forEach(function(obj){
var em = Ember.Object.create({});
emCluster.setProperties(obj);
ret.push(emCluster);
});
But is there a one line way of obtaining the same result?