Pages

Javascript String - fixed() Method

4/7/14

Description:

This method causes a string to be displayed in fixed-pitch font as if it were in a <tt> tag.

Syntax:

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

Return Value:

  • Returns the string with <tt> tag.

Example:

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

var str = new String("Hello world");

alert(str.fixed());

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

No comments:

Post a Comment

Related Posts