JavaScript String - méthode sup ()

La description

Cette méthode entraîne l'affichage d'une chaîne en exposant, comme si elle était dans une balise <sup>.

Syntaxe

Sa syntaxe est la suivante -

string.sup( )

Valeur de retour

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

Exemple

Essayez l'exemple suivant.

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

Production

<sup>Hello world</sup>