我刚刚开始修改 Google 电子表格的脚本,但我遇到了一个问题:
如何测试函数参数的类型是否是单元格范围?
我想做这样的事情:
if(typeof intput != "range") {
throw "input must be a range";
}
从谷歌的例子here(页面中间):
if (typeof inNum != "number") { // check to make sure input is a number
throw "input must be a number"; // throw an exception with the error message
}
所以这似乎是测试变量类型的正确方法。但我不知道如何测试类型是否是一系列单元格。
如果我可以指定范围是一维还是二维,那就更好了。