JavaScript String - small() Method



Description

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

Syntax

Its syntax is as follows −

 string.small( ) 

Return Value

Returns the string with <small> tag.

Example

Try the following example.

 <html> <head> <title>JavaScript String small() Method</title> </head> <body> <script type = "text/javascript"> var str = new String("Hello world"); alert(str.small()); </script> </body> </html> 

Output

 <small>Hello world</small> 
javascript_strings_object.htm
Advertisements