function fun(a,b){
var temp;
temp=a;
a=b;
b=temp;
}
var x=0,y=5;
fun(x,y);
console.log(x);//0
慕桂英3389331
相关分类