Función IsArray de VBScript

La función IsArray devuelve un valor booleano que indica si la variable de entrada especificada es una variable de matriz o NO.

Sintaxis

IsArray(variablename)

Ejemplo

<!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>

Cuando el código anterior se guarda como .HTML y se ejecuta en Internet Explorer, produce el siguiente resultado:

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