我在 javascript 中有一个函数:
function test(a, b, c) {
if(typeof b == "undefined")
//do something
//function code
}
现在我想以这样的方式调用这个函数,以便typeof b remains undefined
和a & c containes
值(不重新排序a
,b
&c
),比如
test("value for a", what i can pass here so that b type will be undefined, "value for c")