Pages

Javascript String - sub() Method

4/7/14

Description:

This method causes a string to be displayed as a subscript, as if it were in a <sub> tag.

Syntax:

string.sub( )
Here is the detail of parameters:
  • NA

Return Value:

  • Returns the string with <sub> tag.

Example:

<html>
<head>
<title>JavaScript String sub() Method</title>
</head>
<body>
<script type="text/javascript">

var str = new String("Hello world");
alert(str.sub());

</script>
</body>
</html>
This will produce following result:
<sub>Hello world</sub>

No comments:

Post a Comment

Related Posts