I need to remove the extra if and else loop as per the req and need to make it short for reading of the code should be easy. can anyone suggest some better for below:
if (data[0].FA_N__c) {
if (test === false) {
this.cl = acL;
}
else if (test === true) {
this.cl = acWo;
}
}
else {
if (test === false) {
this.cl = nAc;
}
else if (test === true) {
this.cl = nAcWo;
}
}
}