Property:  WshArguments.length

object.length

The length property is read only and returns a Long value which is the number of items in the collection.

The following JScript code uses the length property to set up a loop over the list of arguments passed to the current script. The output shown would be observed if the script were invoked with two command-line arguments: "abc" and "def".

Code:
for (i=0; i<WScript.Arguments.length; i++)
{
    WScript.Echo("Argument",i,"is",WScript.Arguments(i))
}


Output:
Argument 0 is abc
Argument 1 is def

Copyright 1999-2001 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information