function test(x,x){
console.log(x); // function x(){}
x = 10;
console.log(arguments); // [5,10]
function x(){}
}
test(5,20);
function test(x,x){
console.log(x); // function x(){}
x = 10;
console.log(arguments); // [5,10]
function x(){}
}
test(5,20);