JavaScript - Méthode Math toSource

La description

Cette méthode renvoie la chaîne "Math". Mais cette méthode ne fonctionne pas avec IE.

Syntaxe

Sa syntaxe est la suivante -

Math.toSource() ;

Valeur de retour

Renvoie la chaîne "Math".

Exemple

Essayez l'exemple de programme suivant.

<html>   
   <head>
      <title>JavaScript Math toSource() Method</title>
   </head>
   
   <body>      
      <script type = "text/javascript">
         var value = Math.toSource( );
         document.write("Value : " +  value );
      </script>      
   </body>
</html>

Production

Value : Math