JavaScript Practice Questions And Answer

Problem: Write a program to calculate factorial of a given number.
Solution:
<html>
 <head>
  <script>
   function demo1()
  {
    var N = 5
    //fact = 5*4*3*2*1
    var f = 1
    for(var i=N; i>=1; i = i-1)
      { 
        f=f*i 
        document.write(i +"-" + f + "</br>")
      }
       document.write("Thanks")
    }
    </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!