Order javascript array according to field

by Shishir Morshed

JavaScript

var array =  [
    {

        "name": {
            "text": "javascript"
        },
        "order": {
            "text": "4"
        }

    },
    {

        "name": {
            "text": "angualr js"
        },
        "order": {
            "text": "2"
        }
    },
 {

        "name": {
            "text": "Ios"
        },
        "order": {
            "text": "3"
        }
    },
 {

        "name": {
            "text": "PHP"
        },
        "order": {
            "text": "5"
        }
    }, {

        "name": {
            "text": "C"
        },
        "order": {
            "text": "5"
        }
    }
]

array.sort(function(a, b) {
  return parseInt(a.order.text) - parseInt(b.order.text);
});

console.log(array);