Site icon T4Tutorials.com

Javascript string length Program Algorithm Flowchart

Javascript string length Program Algorithm Flowchart

Javascript string length Program, Algorithm, and Flowchart are covered in this article.

Algorithm of Javascript string length

Flowchart of Javascript string length

Javascript string length Program Algorithm Flowchart
Figure: Javascript string length Program Algorithm Flowchart

Program of Javascript string length

<html>
   <head>
      <title>JavaScript String length Property</title>
   </head> 
   <body>   
      <script>
         var str = new String( "This is string that is to be measured" );
         document.write("The lenth of the string is" + str.length); 
      </script>      
   </body>
</html>

Output

The length of the string is 37.

Topic Covered

Javascript string length Program Algorithm Flowchart.

Exit mobile version