Metodo big
Aggiornamento: novembre 2007
Restituisce una stringa in cui il testo di un oggetto String è racchiuso tra i tag HTML <BIG>.
function big() : String
Note
Non viene verificato se il tag è già stato applicato alla stringa.
Esempio
Nell'esempio seguente viene illustrato l'utilizzo del metodo big.
var strVariable = "This is a string object";
strVariable = strVariable.big();
Il valore di strVariable dopo l'ultima istruzione è:
<BIG>This is a string object</BIG>