Class EmberArray

public
Uses: Enumerable
Since: vEmber 0.9.0

This mixin implements Observer-friendly Array-like behavior. It is not a concrete implementation, but it can be used up by other classes that want to appear like arrays.

For example, ArrayProxy is a concrete class that can be instantiated to implement array-like behavior. This class uses the Array Mixin by way of the MutableArray mixin, which allows observable changes to be made to the underlying array.

This mixin defines methods specifically for collections that provide index-ordered access to their contents. When you are designing code that needs to accept any kind of Array-like object, you should use these methods instead of Array primitives because these will properly notify observers of changes to the array.

Although these methods are efficient, they do add a layer of indirection to your application so it is a good idea to use them only when you need the flexibility of using both true JavaScript arrays and "virtual" arrays such as controllers and collections.

You can use the methods defined in this module to access and modify array contents in an observable-friendly way. You can also be notified whenever the membership of an array changes by using .observes('myArray.[]').

To support EmberArray in your own class, you must override two primitives to use it: length() and objectAt().

Show:

Module: @ember/array
returns
this

This is the handler for the special array content property. If you get this property, it will return this. If you set this property to a new array, it will replace the current content.

1
2
3
4
5
6
let peopleToMoon = ['Armstrong', 'Aldrin'];

peopleToMoon.get('[]'); // ['Armstrong', 'Aldrin']

peopleToMoon.set('[]', ['Collins']); // ['Collins']
peopleToMoon.get('[]'); // ['Collins']
Module: @ember/array
returns
Object | undefined
The first object in the array

The first object in the array, or undefined if the array is empty.

1
2
3
4
5
6
7
8
9
10
11
let vowels = ['a', 'e', 'i', 'o', 'u'];
vowels.firstObject; // 'a'

vowels.shiftObject();
vowels.firstObject; // 'e'

vowels.reverseObjects();
vowels.firstObject; // 'u'

vowels.clear();
vowels.firstObject; // undefined
Module: @ember/array
returns
Object | undefined
The last object in the array

The last object in the array, or undefined if the array is empty.

Module: @ember/array

Required. You must implement this method to apply this mixin.

Your array must support the length property. Your replace methods should set this property whenever it changes.