how can I change the following to ternary so I can use it in .HTML file
if (statusChange && statusChange === 'Employed') {
return true;
} else {
return employmentStatus === 'Employed'
}
i.e. assign the result of the second comparison only if the first if statement results to false