I have a function in javascript :
function test(a, b, c) {
if(typeof b == "undefined")
//do something
//function code
}
Now i want to call this function in such a way so that typeof b remains undefined and a & c containes value (without reordering a, b & c), like
test("value for a", what i can pass here so that b type will be undefined, "value for c")