JavaScript String - bold() Method
Description
This method causes a string to be displayed as bold as if it were in a <b> tag.
Syntax
The syntax for bold() method is as follows −
string.bold( )
Return Value
Returns the string with <bold> tag.
Example
Try the following example.
<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>
Output
<b>Hello world</b>
javascript_strings_object.htm
Advertisements