I have three JSON objects that are similar. I want to combine all of them into one list and then sort the entire list based on a specific index value. Here is the description of the objects:
Object 1
[{"link":"#","prod":"Fundamentals Of Software Engineering","price":" Rs. 200 "},{"link":"##","prod":"Real-Time Systems: Theory And Practice","price":" Rs. 394 "}]
Object 2
[{"link":"#","prod":"Fundamentals Of Software Engineering","price":" Rs. 200 "},{"link":"##","prod":"Real-Time Systems: Theory And Practice","price":" Rs. 394 "}]
Object 3
[{"link":"#","prod":"Fundamentals Of Software Engineering","price":" Rs. 200 "},{"link":"##","prod":"Real-Time Systems: Theory And Practice","price":" Rs. 394 "}]
After merging them, I would like to sort the combined array based on the price index.
If you have any tips on how to achieve this, please let me know. Thank you :)