JavaScript Practice Questions And Answer

Problem: Write a program to find first occurrence of a character in a given string.
Solution:
            <html>
             <head>
              <script>
                function demo1()
                 {
                   var str = document.getElementById("input1").value
                    for (i=0;i<str.length;i++)
                  {
                    let ch = str[i]
                     if(ch == 'e')
                    {
                      document.write(" e found at pos :"+ i)
                      break;
                    }
                     if(i == (str.length-1))
                     {
                      document.write("e char not found")
                     }
                  }
              }
         </script>
            </head>
            <body>
                <input type= "text" id="input1" placeholder="enter data"/>
                <br><br>
                <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!