8 Essential Backbone.js Interview Questions *

Toptal sourced essential questions that the best Backbone.js developers and engineers can answer. Driven from our community, we encourage experts to submit questions and offer feedback.

Hire a Top Backbone.js Developer Now
Toptal logois an exclusive network of the top freelance software developers, designers, marketing experts, product managers, project managers, and finance experts in the world. Top companies hire Toptal freelancers for their most important projects.
1.

What are some alternatives to Backbone.js’s dependencies?

View answer

Backbone.js has only one hard dependency: Underscore.js. However, you often need to include jQuery and json2.js to support certain features. Sometimes it is possible to use Lo-Dash and Zepto (two more lightweight alternatives to Underscore.js and jQuery) when it comes to using Backbone.js.

2.

Why would you want to bind event handlers using “listenTo()” instead of “on()”?

View answer

There are two advantages to using “listenTo()” instead of using “on()”. Typically, the way they are used is a bit different:

listener.listenTo(object, event, callback)
object.on(event, callback)

With “listenTo()”, the object whose events you want to listen to is passed as the first argument. In the case of “on()”, it is actually a method on that object.

The advantages of “listenTo()” over “on()” are:

  • The listener keeps track of all the event handlers, making it easier to remove them all at once when needed.
  • The callback’s context is always set to the listener itself.
3.

How do you sort a collection? When is it important to explicitly invoke “sort()” on a collection?

View answer

With Backbone.js, collections can be sorted by defining comparator on the collection object. By default, collections are not explicitly sorted. By defining a comparator, a collection is sorted whenever a model is added or the “sort()” method is invoked on a collection:

var Fruits = Backbone.Collection.extend({
	comparator: function(a, b) { /* .. */ }
})
// Or
var Fruits = Backbone.Collection.extend({})
var fruits = new Fruits()
fruits.comparator = function(a, b) { /* .. */ }

The comparator property can be a function with one argument (similar to one used in “sortBy”) or two arguments (similar to one used in “sort”), or a string identifying the attribute by name to sort on.

When an attribute of a model in a collection changes, the collection doesn’t sort itself. This is a scenario where sort must be invoked explicitly to update the order of models in the collection.

4.

What function would you change to override Backbone.js’s default support for REST APIs?

View answer

To override the default behavior on a per-model basis, you can set a custom function to “Model.sync”. To make the change global, you can set the custom function to “Backbone.sync”. Ideally, the “sync” function should handle four methods: “create”, “read”, “update”, and “delete”. The function receives the CRUD method name, the model itself, and an object with some additional options. Sometimes setting “Backbone.emulateJSON” to true can often do the job, in which case all you need to do is submit requests as “application/x-www-form-urlencoded” instead of “application/json”.

5.

How can you watch for changes on a single attribute of a model?

View answer

Model objects fire the “change” event whenever some data changes within the model. However, the object fires another event with a name specific to the attribute that has changed: “change:[attribute]”. For example:

var Fruit = Backbone.Model.extend({})
var fruit = new Fruit({
	weight: 3.25
})
fruit.on(‘change:weight, function() {
	// Event “change:weight” will fire whenever the weight attribute of fruit changes.
})
6.

How do you define a model that when you try to fetch or save uses the URL “/api/records/{timestamp}”? Where “{timestamp}” is the number of seconds elapsed since epoch.

View answer

URLs for models are defined by setting the “url” attribute. The attribute can be set as a string or a function. We can set a function that returns a string satisfying the URL pattern in question:

var Record = Backbone.Model.extend({
	url: function() {
		return ‘/api/records/’+Math.round(new Date().getTime()/1000)
	}
})

Another less recommended approach to this would be to use an appropriately generated URL whenever and wherever you invoke “fetch()”.

7.

Why is it not recommended to change the “el” property of a view directly? How should it be done instead?

View answer

Attempting to change the “el” property may lead to inconsistent behavior from the Backbone view. This is because changing the “el” property directly doesn’t automatically update the cached jQuery object property corresponding to it, which is “$el”. The correct way to do this is to use “setElement()” on the view:

view.setElement(otherElement)
8.

What is the difference between the properties “id” and “cid” on a model object?

View answer

The “id” property on a model is automatically assigned based on the “id” set in the model’s attributes hash. Ideally, this is the ID that you receive from the rest API for the resource that you are querying. On the other hand, “cid” is an ID temporarily assigned to each model and is useful until an actual ID is determined for the object. For example, a model pushed to a collection that has not yet been persisted can be addressed using “cid”, until it is saved in the database and an actual ID is generated for it.

These sample questions are intended as a starting point for your interview process. If you need additional help, explore our hiring resources—or let Toptal find the best developers, designers, marketing experts, product managers, project managers, and finance experts for you.

Submit an interview question

Submitted questions and answers are subject to review and editing, and may or may not be selected for posting, at the sole discretion of Toptal, LLC.

* All fields are required

Looking for Backbone.js Developers?

Looking for Backbone.js Developers? Check out Toptal’s Backbone.js developers.

Felipe Esposito

Freelance Backbone.js Developer
Verified Expert in Engineering
Argentina
Toptal Member Since November 7, 2016

Felipe has worked as a software developer for the last ten years using Python and Django as his primary tools, though he has used them for much longer. He also has experience with many popular JavaScript frameworks such as Vue, React, Ember, and Backbone.js, using them in most of his projects. Felipe is a team player and has good communication skills.

Show More

Tobias L. Johnson

Freelance Backbone.js Developer
Verified Expert in Engineering
United States
Toptal Member Since August 31, 2015

Tobias is a well-rounded developer with broad experience in Microsoft/.NET technologies as well as open-source, Linux-based platforms. He specializes in building full-stack solutions using ASP.NET Core API and Angular UI. He takes a pragmatic approach to solving problems and is comfortable wearing many hats depending on client requirements. He thrives in Agile and DevOps environments and has excellent written and oral communication skills.

Show More

Sergei Garcia

Freelance Backbone.js Developer
Verified Expert in Engineering
Mexico
Toptal Member Since December 9, 2020

A seasoned front-end engineer, Sergei Garcia boasts a decade of impact. Notably, he orchestrated a dynamic overhaul at Typing.com through a 2.5-year front end refactoring to React, revolutionizing UX for its 35+ million users. Celebrated for creating high-performance applications with exemplary UX, Sergei's empathetic leadership and zest for continual growth establish him as more than a tech maestro. He's also an exceptional mentor who elevates every team he joins to new heights.

Show More

Toptal Connects the Top 3% of Freelance Talent All Over The World.

Join the Toptal community.

Learn more