JavaScript Practice Questions And Answer

Problem: Write a program that accepts the age of person, find out the person is eligible for voting or not.
Solution:
            <html>
             <head>
              <script>
               function f1()
            {
                 var age = 22
                 var result = age  >= 18
                 if(result)
                {
                    alert("Eligible for voting ")
                } else 
                {
                    alert("try next year ")
                }
            }
             </script>
            </head>
             <body>
             <input type="button" value="Go" onclick="f1()"/>
             </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!