Giacomo Balli profile picture
Giacomo Balli
The Mobile Guy

For founders and teams whose growth depends on mobile.
Clear judgment when AI, vendors, and product choices muddy the roadmap.

Find the Right Move LinkedIn

Sort an Array based on a JSON Object Property

This code sample will allow you to sort an array of JSON objects based on a property.

db = db.sort(function (a, b) {
	if (a.title < b.title)
		return -1;
	if (a.title > b.title)
		return 1;
	return 0;
	});

Directions:
- db is your array.
- replace "title" with the property to be used for sorting

Note:
This snippet focuses on iOS development. Make sure to verify/adapt any vendor prefixes. Back to main listing.

Published: Sun, Jan 10 2016 @ 18:50:27
Back to Blog