I have a function which returns an array of objects like this
const allGreen = _.filter(
sidebarLinks,
side => !isServicePage(side.slug.current)
);
I'm trying to swap positions of these object.
- The first object should be at the last position.
- The second object should be the first one
- The third object should be in the middle