Copyright © tutorialspoint.com
This method causes a string to be displayed in a small font, as if it were in a <small> tag.
string.small( ) |
Here is the detail of parameters:
NA
Returns the string with <small> tag.
<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> |
This will produce following result:
<small>Hello world</small> |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com