italics, méthode
Retourne une chaîne avec des balises HTML <I> avant et après le texte d'un objet String.
function italics() : 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 le fonctionnement de la méthode italics :
var strVariable = "This is a string";
strVariable = strVariable.italics();
La valeur de strVariable après la dernière instruction est :
<I>This is a string</I>