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