Giacomo Balli profile picture
Giacomo Balli
The Second Opinion

For owners and CEOs about to spend serious money on software, AI, an app, or a vendor.
An independent answer before the money moves.

Bring Me the Decision 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