JavaScript Practice Questions And Answer

Problem: Write a program to show day of city name according to user input by using switch case.
Solution:
          <html>
            <head>
              <script>
              function demo1()
              {
                var userInput = 4 
                switch(userInput) 
                {
                  case '1': 
                  document.write("My favourite city")
                  document.write("Indore")
                  break
                  case '2':
                  document.write("Bhopal")
                  break
                  case 3:
                  document.write("dewas")
                  break
                  case 4:
                  document.write("Ujjain")
                  document.write("Mahakal Temple")
                  break
                  default :
                  alert("not valid choice")
                }
              }
                </script>
            </head>
              <body>
                <input type="button" value="Go" onclick="demo1()"/>
              </body>
        </html>         

Contact Us

Our Address

Office no.- 401,Shekhar Central Building ,Palasiya, Pin-code:452001, Indore

Email Us

contact@codebetter.in

Call Us

+91 88230 75444, +91 99939 28766

Loading
Your message has been sent. Thank you!