<script>
function showCost(){
let age = document.getElementById("age");
if (age <= 6) {
cost = "Free !";
}
else if (age <= 12) {
cost = "$5";
}
else if (age < 18) {
cost = "$8";
}
else if (age <= 64) {
cost = "$12";
}
else if (age >= 65) {
cost = "$5";
}
alert(cost);
}
</script>
<input id="age" type="number" placeholder="Text">
<button onclick="showCost()">Submit</button>
Uncaught ReferenceError ReferenceError: cost is not defined at showCost (c:\Users\Dillon\OneDrive\Desktop\folder\index.html:19:7) at onclick (c:\Users\Dillon\OneDrive\Desktop\folder\index.html:27:34)