pushObjects (objects) Ember.Array
public
Add the objects in the passed numerable to the end of the array. Defers notifying observers of the change until all objects are added.
let colors = ['red']; colors.pushObjects(['yellow', 'orange']); // ['red', 'yellow', 'orange']
Parameters:
-
objects
Ember.Enumerable
- the objects to add
Returns:
-
Ember.Array
- receiver
Please login to continue.