JavaScript Practice Questions And Answer

Problem: Write a program to count total number of even and odd elements in an array.
Solution:
            <html>
              <head>
                <script>
                function demo1()
                 {
                   let marks = [27, 67, 108,  34, 92, 15,11, 24]
                       for(e of marks)
                        {
                          document.write("<br>" + e )
                        }
                       //find all odd from marks array
                        for(x of marks)
                        {
                          if(x%2 == 1){
                            document.write("<br> ODD" + x)
                          }
                        }
                      }
                   </script>
                 </head>
                  <body>
                    <input type="button" value="Go" onclick="demo1()" /><br>
                  </body>
            </html>
          

Contact Us

Our Address

Plot No. 64, PU-4, Scheme 54, Behind C21 Mall near Hotel Holiday , AB Road, Indore Pin-code:452001

Email Us

contact@codebetter.in

Call Us

+91 88230 75444, +91 99939 28766

Loading
Your message has been sent. Thank you!