I have an array of objects with different keys i want to move the objects to the top based on the key i want.
Given array based on the status: “Active” I want all the matched objects to be moved top
[{name: "abc", age: "20", status: "Active"}, {name: "xyz", age: "21", status: "Inactive"}, {name: "pqr", age: "22", status: "Active"}]
Expected Output:
[{name: "abc", age: "20", status: "Active"}, {name: "pqr", age: "22", status: "Active"}, {name: "xyz", age: "21", status: "Inactive"}]