I got an array (see below for one object in the array) that I need to sort by firstname using JavaScript.
How can I do it?
var user = {
bio: null,
email: "user@domain.com",
firstname: "Anna",
id: 318,
lastAvatar: null,
lastMessage: null,
lastname: "Nickson",
nickname: "anny"
};