JavaScript String - Méthode italique ()

La description

Cette méthode fait en sorte qu'une chaîne soit en italique, comme si elle était dans un <i> marque

Syntaxe

Sa syntaxe est la suivante -

string.italics( )

Valeur de retour

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

Exemple

Essayez l'exemple suivant.

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

Production

<i>Hello world</i>