// x,就是函数的参数 // 函数的参数是局部变量function show(x){ console.log(x)}console.log(x);show(3);
// x,就是函数的参数
// 函数的参数是局部变量
function show(x){
console.log(x)
}
console.log(x);
show(3);
若有收获,就点个赞吧
0 人点赞
让时间为你证明