let arr = [{id:1,name:1,job:1}, {id:2,name:2,job:2}, {id:4,name:4,job:4}, {id:3,name:3,job:3}.] ;
suppose: the value returned to me by the backend is {id:2,name:2,job:2};
then what can I do to get the {id:3,name:3,job:3} object? (that is, after the current object is returned in the background, the next object is sorted)
Thank you!