var check = function fiveBoolean(a,b,c,d,e){ if (b){ if (a&&c) return true; if (c&&d) return true; } if (c){ if (b&&d) return true; } if (d){ if (c&&e) return true; } return false; }