Casio
Texas Instruments
Sharp
Recommended Calculators:
- Casio fx-991EX
- Texas Instruments TI-36X Pro
- Sharp EL-W516TBSL
document.getElementById(“scientific-calculator-form”).addEventListener(“submit”, function(e) {
e.preventDefault();
const displaySize = document.getElementById(“display-size”).value;
const batteryLife = document.getElementById(“battery-life”).value;
const priceRange = document.getElementById(“price-range”).value;
const functions = document.getElementById(“functions”).value;
const brand = document.getElementById(“brand”).value;
let recommendedCalculators = [];
if (brand === “casio”) {
recommendedCalculators.push(“Casio fx-991EX”);
} else if (brand === “ti”) {
recommendedCalculators.push(“Texas Instruments TI-36X Pro”);
} else if (brand === “sharp”) {
recommendedCalculators.push(“Sharp EL-W516TBSL”);
}
document.getElementById(“calculator-results”).innerHTML = `
Recommended Calculators:
- ${recommendedCalculators.join(“
- “)}
`;
});