I wanted to have a function that accepts multiple integer parameters and I am not sure how may parameters will be passed to the function, but I will use all the parameters passed.
It will be some think like this
function abc(.......){
// I want to transfer all the parameters passed to one array
var xyz = arguments[];
}
abc(1,2,3,4,5,.....);