Chaîne JavaScript - méthode big ()

La description

Cette méthode entraîne l'affichage d'une chaîne dans une grande police comme si elle était dans une balise BIG.

Syntaxe

La syntaxe pour utiliser big () est la suivante -

string.big( )

Valeur de retour

Renvoie la chaîne ayant <big> marque.

Exemple

Essayez l'exemple suivant.

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

Production

<big>Hello world</big>