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