JavaScript Practice Questions And Answer

Problem: Write a program to accepts three numbers from user and calculate biggest number out of three numbers.
Solution:
<html>
 <head>
  <script>
   function maxof3()
    {
      var a = 34
      var b = 97
      var c = 26
       if(a>b && a>c)
       {
         document.write(a, " is biggest")
       }
       else
       {
        if( b>c)
        {
         document.write(b, " is biggest")
        }
         else
         {
           document.write(c, " is biggest")
         }
        }
       }
  </script>
 </head>
    <body>
     <input type="button" value="Go" onclick="maxof3()" />
    </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!