I am stuck yet again;
PHP Code:
var creditCheck = function (income) {
if ((income) >= 100);{
return; "You earn a lot of money! You qualify for a credit card.";
} else {
return "Alas you do not qualify for a credit card. Capitalism is cruel like that.";
}
}
creditCheck(75);
creditCheck(125);
creditCheck(100);
Instructions:
Thank you BBoyEatsBacon for that explanation, I understand it now!