JavaScript - Metodo Math toSource
Descrizione
Questo metodo restituisce la stringa "Math". Ma questo metodo non funziona con IE.
Sintassi
La sua sintassi è la seguente:
Math.toSource() ;
Valore di ritorno
Restituisce la stringa "Math".
Esempio
Prova il seguente programma di esempio.
<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>
Produzione
Value : Math