Funzione VBScript IsArray

La funzione IsArray restituisce un valore booleano che indica se la variabile di input specificata è o meno una variabile di matrice.

Sintassi

IsArray(variablename)

Esempio

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         a = array("Red","Blue","Yellow")
         b = "12345"

         Document.write("The IsArray result 1 : " & IsArray(a) & "<br />")
         Document.write("The IsArray result 2 : " & IsArray(b) & "<br />")

      </script>
   </body>
</html>

Quando il codice precedente viene salvato come .HTML ed eseguito in Internet Explorer, produce il seguente risultato:

The IsArray result 1 : True
The IsArray result 2 : False