function getBoolean(a, b, c, d) { if (a < b){ return true; } if (a < d){ return false; } if (c > d) { return true; } if (a === c) { return false; } }