Copyright © tutorialspoint.com
This method causes a string to be displayed as bold as if it were in a <b> tag.
string.bold( ) |
Here is the detail of parameters:
NA:
Returns the string with <bold> tag.
<html> <head> <title>JavaScript String bold() Method</title> </head> <body> <script type="text/javascript"> var str = new String("Hello world"); alert(str.bold()); </script> </body> </html> |
This will produce following result:
<b>Hello world</b> |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com