Tell us what’s happening:
This is stuck. This happens a lot. I do not see a problem and need to move forward.
Your code so far
const minIncomeForDuplex = 60000;
const minCreditScoreForDuplex = 700;
const minIncomeForCondo = 45000;
const minCreditScoreForCondo = 680;
const minIncomeForCar = 30000;
const minCreditScoreForCar = 650;
function getLoanMessage(annualIncome, creditScore) {
// User Editable Region
if (annualIncome >= minIncomeForDuplex && creditScore >= minCreditScoreForDuplex)
{
return "You qualify for a duplex, condo and car loan.";
}
// User Editable Region
}
getLoanMessage(65000, 720);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36
Challenge Information:
Build a Loan Qualification Checker - Step 3