What are enumerable in ember.js?

devquora
devquora

Posted On: Feb 22, 2018

 

An enumerable is any object in ember.js which contains a number of child objects and allows us to work with those children using “ember.enumerable” API. The native JavaScript array is the most common enumerable in a majority of applications, which ember.js extends to conform to the enumerable interface. Ember.js provides us with a standardized interface for dealing with the enumerable and allows us to completely change the way our underlying data is stored without modifying the other parts of the application which accesses it. This API follows ECMAScript specifications as much as possible which hence minimizes the incompatibility with other libraries. It also allows ember.js to use the native browser implementations in arrays where they are available.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Emberjs Interview Questions

    What is Ember.js? Write the steps to create an app in Ember.js?

    Ember.js is an open source technology written in javascript based on a model view pattern and was developed by ember cor..

    Emberjs Interview Questions

    Explain directory structure in Ember.js?

    The new command generates a project structure also called directory structure with the following files and directories:I..

    Emberjs Interview Questions

    Explain what is ember-data?

    Ember comes with a data management library called Ember data which deals with application data that defines the structur..