JavaScript Practice Questions And Answer

Problem:Write a program to calculate factorial using function with argument and with return type.
Solution:
            <html>
             <head>
              <script>
               function factorial(n)
                {
                  if(n==1)
                  {
                    return 1
                  }
                    var f = n * factorial(n-1)
                    return f
                }
                  function demo1()
                {
                  var fact = factorial(7)
                  document.write(fact+"<br>")
              }
               </script>
            </head>
            <body>
                <input type="button" value="Go" onclick="demo1()"/><br>
            </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!