Chaîne JavaScript - méthode fixed ()

La description

Cette méthode entraîne l'affichage d'une chaîne dans une police à pas fixe comme si elle était dans une balise <tt>.

Syntaxe

Sa syntaxe est la suivante -

string.fixed( )

Valeur de retour

Renvoie la chaîne avec <tt> marque.

Exemple

Essayez l'exemple suivant.

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

Production

<tt>Hello world</tt>