Função VBScript IsArray

A função IsArray retorna um valor booleano que indica se a variável de entrada especificada é ou NÃO uma variável de matriz.

Sintaxe

IsArray(variablename)

Exemplo

<!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 o código acima é salvo como .HTML e executado no Internet Explorer, ele produz o seguinte resultado -

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