Chaîne JavaScript - méthode small ()

La description

Cette méthode entraîne l'affichage d'une chaîne dans une petite police, comme si elle était dans une balise <small>.

Syntaxe

Sa syntaxe est la suivante -

string.small( )

Valeur de retour

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

Exemple

Essayez l'exemple suivant.

<html>
   <head>
      <title>JavaScript String small() Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         var str = new String("Hello world");
         alert(str.small());
      </script>      
   </body>
</html>

Production

<small>Hello world</small>