Google News
logo
Backbone - Interview Questions
What are some prominent features or key points of Backbone.js?
A list of some prominent features or key points of Backbone.js:
 
Backbone.js has a hard dependency with underscore.js, making it more functional and providing support for a range of useful collection-based operations.

Backbone.js has a soft dependency on jQuery.

Backbone.js is based on MVC architecture. When the model changes, it can update the HTML of your application automatically.

Backbone.js uses a client-side rendering framework or Javascript templating to render HTML, enabling you not to embed HTML code inside JavaScript code.

Backbone.js offers a significantly clean and elegant way for UI updates and DOM manipulations.
Advertisement