function show(x) {
11. x = [4,5,6];
12. }
你定义了一个方法,赋值x=[4,5,6];
但是并没有返回值。虽然调用了show()方法,在只是在show()方法里面有效,所以改成
function show(x) {
x = [4,5,6];
return x;
}
var x = [1,2,3];
var b=show(x);
document.write("b=="+b);//x==4,5,6
要么你就在show()方法里面写出来
function show(x) {
x = [4,5,6];
document.write("x=="+x);
}
var x = [1,2,3];
show(x); |