function func_name(...allArgs) { console.log("Paraameter at 3th position : " + arguments[2]); console.log("Paraameter at 6th position : " + arguments[5]); } func_name("value1", "value2", "value3", "value4", "value5", "value6");
0 Comments