我在js中找不到如何找到发送到程序的参数数量(vb中的行有numberArg = WScript.Arguments.Count)。
另外,我在js中找不到像地图这样的数据结构。
我在网上搜索但找不到它。
由于
答案 0 :(得分:1)
Arguments.length是数组的大小。还可以在这里查看更多很酷的东西http://nilleb.wordpress.com/2008/08/27/javascript-code-to-use-wscript-parameters/
地图是任何对象。 E.g。
var mymap = {a:42, b:"hello world"}
alert(mymap.a)
alert(mymap['b'])
答案 1 :(得分:1)
在java脚本中它是:WScript.Arguments.length
。
像map这样的数据结构是Object:
var map = new Object();
map["hello"] = "world";