Else
var umbrellaMandatory;
if(country === 'England'){
umbrellaMandatory = true;
} else {
umbrellaMandatory = false;
}if(country === 'England') {
...
} else if(country === 'France') {
...
} else if(country === 'Germany') {
...
}Last updated