JS - Check if the input field equals the solution

10,779

window.alert("try again); needs to be window.alert("try again"); You forgot to place a quote

Share:
10,779
user3127554
Author by

user3127554

Updated on June 04, 2022

Comments

  • user3127554
    user3127554 almost 2 years

    I'm making a simple website for little kids with mathproblems,

    the page contains a number of questions that the kids need to solve. They can press on 1 button that checks if the value that they inputted, equal is to the solution. JAVASCRIPT is obligated

    I have this in HTML:

    Question 1: how much is 8 x 4? 
    <br><input type="text"> <br>
    <button onclick="question1()">Check if your answer is correct?</button> 
    

    my function already has this, but i can't seem to make up my mind with the syntax that looks correct:

    function question1() {
      if (value == 32) {
         window.alert("correct!");
      } else {
         window.alert("try again);
      }
    }
    

    but my syntax looks correct?

  • user3127554
    user3127554 about 7 years
    Thanks you very much, i'm sorry for the late answer!