JavaScript String - metodo sub ()
Descrizione
Questo metodo fa sì che una stringa venga visualizzata come pedice, come se fosse in un tag <sub>.
Sintassi
La sua sintassi è la seguente:
string.sub( )
Valore di ritorno
Restituisce la stringa con il tag <sub>.
Esempio
Prova il seguente esempio.
<html>
<head>
<title>JavaScript String sub() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.sub());
</script>
</body>
</html>
Produzione
<sub>Hello world</sub>