write a javascript function that eligibility( age, state, filed, dependents ) This function accepts four inputs. The first input is a number that denotes a person's age in years. The second input is a string that denotes the two-letter abbreviation of the state in which the person resides. The second input must not be case sensitive. The third input is a Boolean denoting whether the person filed a state income tax in the previous tax year. The fourth input is a number denoting the number of dependents claimed on the previous year's tax form. The "dependents" is an optional parameter and will be omitted if the third parameter is false. The function returns true if the person is eligible for a tax refund and false if they are not. A person is eligible for a tax refund if They are at least 60 years of age Reside in either Iowa (state="IA") or Wisconsin (state="WI") Have filed a state income tax in the previous year Have at least 1 dependent and no more than 5 Examples eligible( 35, 'CA', true, 3) => false eligible( 61, 'wi', true, 3) => true eligible( 38, 'WI', false ) => false
write a javascript function that
This function accepts four inputs. The first input is a number that denotes a person's age in years. The second input is a string that denotes the two-letter abbreviation of the state in which the person resides. The second input must not be case sensitive. The third input is a Boolean denoting whether the person filed a state income tax in the previous tax year. The fourth input is a number denoting the number of dependents claimed on the previous year's tax form. The "dependents" is an optional parameter and will be omitted if the third parameter is false. The function returns true if the person is eligible for a tax refund and false if they are not. A person is eligible for a tax refund if
- They are at least 60 years of age
- Reside in either Iowa (state="IA") or Wisconsin (state="WI")
- Have filed a state income tax in the previous year
- Have at least 1 dependent and no more than 5
Examples
- eligible( 35, 'CA', true, 3) => false
- eligible( 61, 'wi', true, 3) => true
- eligible( 38, 'WI', false ) => false
Step by step
Solved in 4 steps with 2 images