another way is filtering in two list like below:
const originalList = [{condition:true}, {condition: false}, {condition: true}];
// wished lists
const listWithTrue = originalList.filter(x=>x.condition);
const listWithFalse = originalList.filter(x=>!x.condition); // inverse condition