JavaScript Practice Questions And Answer

Problem: Write a program to accept N number from user and check and print only Prime numbers.
Solution:
            <html>
            <html>
            <head>
             <script>
              function checkPrime()
           {
            var n = 7
            var i = 2
            while(i <= n-1)
           { 
              if(n%i == 0)
            {
              document.write("Not a prime" + "<br>")
               break
            }
              i = i + 1 
              if(i==n)
            {
              document.write("It's prime")
            }
           }
          }
             </script>
            </head>
              <body>
               <input type="button" value="Go" onclick="checkPrime()" />
              </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!