JSFiddle - React, Tailwind, and code Playground

by karthick Chandran

HTML

sort

JavaScript

var homes = [
    {
        "h_id": "13",
        "city": "Dallas",
        "state": "TX",
        "zip": "75201",
        "price": "162500"
    }, {
        "h_id": "4",
        "city": "Bevery Hills",
        "state": "CA",
        "zip": "90210",
        "price": "319250"
    }, {
        "h_id": "5",
        "city": "New York",
        "state": "NY",
        "zip": "00010",
        "price": "962500"
    }
];

homes.sort(function(a, b) {
    return a.city  - b.city
});

//check in console
console.log(homes);