I think it is rather a beginner's question: How can I address a specific parameter in a function and ignore the others?
Example:
function test(para_1, para_2, para_3) {
if (para_3 == true) {
alert('only the third parameter was successfully set!');
}
}
test(para_3=true);
I want to individually decide whether or not I use a certain parameter in a function or not.