Pick the JavaScript code for the following pseudocode. If age >= 65 Then discountRate = 0.10 End If Group of answer choices
if (age >= 65) Then { discountRate == 0.10; }
end if if (age >= 65) { discountRate == 0.10 }
end if if (age >= 65) Then { discountRate = 0.10; }
if (age >= 65) { discountRate = 0.10; }