JavaScript String - méthode sub ()

La description

Cette méthode entraîne l'affichage d'une chaîne en indice, comme si elle se trouvait dans une balise <sub>.

Syntaxe

Sa syntaxe est la suivante -

string.sub( )

Valeur de retour

Renvoie la chaîne avec la balise <sub>.

Exemple

Essayez l'exemple suivant.

<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>

Production

<sub>Hello world</sub>