हिंदी

Write event driven JavaScript program for the following. Accept any string from user and count and display number of vowels occurs in it. - Information Technology

Advertisements
Advertisements

प्रश्न

Write event driven JavaScript program for the following.

Accept any string from user and count and display number of vowels occurs in it.

संक्षेप में उत्तर

उत्तर

Coding:

<html>
<script type="text/javascript">
    var n, i, ch, cnt = 0;
    n = prompt("Enter a String");
    for (i = 0; i < n.length; i++) {
      ch = n.charAt(i);
      if (ch == 'a' || ch == ' A' || ch == 'e' || ch == 'E' || ch == 'i' ||
      ch == 'I' || ch == 'o' || ch == 'O' || ch == 'u' || ch == 'U') {
        cnt = cnt + 1;
      }
    }
    document.write("Number of vowels in string are " + cnt);
</script>
</html>
shaalaa.com
JavaScript Built-in Objects - String
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 3: Advanced Javascript - Exercises [पृष्ठ ५१]

APPEARS IN

बालभारती Information Technology (IT) (Science) [English] 12 Standard HSC Maharashtra State Board
अध्याय 3 Advanced Javascript
Exercises | Q 7.4 | पृष्ठ ५१
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×