bold, méthode
Retourne une chaîne avec des balises HTML <B> avant et après le texte d'un objet String.
function bold() : String
Notes
Aucune vérification n'est effectuée pour savoir si la balise a déjà été appliquée à la chaîne.
Exemple
L'exemple suivant illustre l'utilisation de la méthode bold :
var strVariable = "This is a string object";
strVariable = strVariable.bold();
La valeur de strVariable après la dernière instruction est :
<B>This is a string object</B>