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, emai
Inspired from this answer,
users.sort((a,b) => (a.firstname - b.firstname));