JavaScript Practice Questions And Answer

Problem: Write a program that accepts a number from user calculate factor of a given number. .e.g. factors of 12 are 1,2,3,4,6,12.
Solution:
            <html>
             <head>
              <script>
              function demo1()
              {
                var inputBox = document.getElementById("input1")
                 var n = parseInt(inputBox.value) 
                 var i = 1
                 while(i<=n)
              {
                 var r = n%i
                 if(r==0)
                 {
                  document.write("<br>Factor : "+i)
                 }
                 i=i+1 
              }
            }
              </script>
             </head>
              <body>
              <input type="text" placeholder="number" id="input1"/><br>
              <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!