JavaScript String - méthode toUpperCase ()

La description

Cette méthode renvoie la valeur de la chaîne appelante convertie en majuscules.

Syntaxe

Sa syntaxe est la suivante -

string.toUpperCase( )

Valeur de retour

Renvoie une chaîne représentant l'objet spécifié.

Exemple

Essayez l'exemple suivant.

<html>
   <head>
      <title>JavaScript String toUpperCase() Method</title>
   </head>
   
   <body>  
      <script type = "text/javascript">
         var str = "Apples are round, and Apples are Juicy.";
         document.write(str.toUpperCase( ));
      </script>      
   </body>
</html>

Production

APPLES ARE ROUND, AND APPLES ARE JUICY.