Returns a string with HTML <B> tags around the text in a String object.
function bold() : String
No checking is done to see if the tag has already been applied to the string.
The following example demonstrates how the bold method works:
var strVariable = "This is a string object"; strVariable = strVariable.bold();
The value of strVariable after the last statement is:
strVariable
<B>This is a string object</B>
Version 1
String Object