What does this program print after three of five replicas become unreachable?
JavaScript
const replicas = 5;
const quorum = Math.floor(replicas / 2) + 1;
const reachable = 2;
console.log(reachable >= quorum ? 'commit' : 'reject');
console.log({ reachable, quorum });