Pages

Javascript String - length Property

4/6/14

Description:

This property returns the number of characters in the string.

Syntax:

string.length
Here is the detail of parameters:
  • A string

Return Value:

Returns the number of characters in the string.

Example:

<html>
<head>
<title>JavaScript String length Property</title>
</head>
<body>
<script type="text/javascript">
   var str = new String( "This is string" );
   document.write("str.length is:" + str.length); 
</script>
</body>
</html>
This will produce following result:
str.length is:14 

No comments:

Post a Comment

Related Posts