An object comes in which there are properties. How can you sort an object alphabetically by the first letter of the properties? Is it possible to implement this on jQuery?
Sample object:
obj = { { name: "banan" }, { name: "ananas" }, { name: "grusha" } }
obj = [ ... ]? - kmv