Pages

Javascript String - big() Method

4/7/14

Description:

This method causes a string to be displayed in a big font as if it were in a BIG tag

Syntax:

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

Return Value:

  • Returns the string having <big> tag.

Example:

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

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

alert(str.big());

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

No comments:

Post a Comment

Related Posts