JS

JavaScript Code Output Challenge - Function if els...

11.

What will be the output of the following code?

function checkDiscountEligibility(age, membershipStatus) {
  if (age >= 60 || membershipStatus === 'Gold') {
    return 'Eligible for discounts';
  } else {
    return 'Not eligible for discounts';
  }
}

console.log(checkDiscountEligibility(65, 'Silver'));

undefined

Silver

Not eligible for discounts

Eligible for discounts