函数的参数

  1. // x,就是函数的参数
  2. // 函数的参数是局部变量
  3. function show(x){
  4. console.log(x)
  5. }
  6. console.log(x);
  7. show(3);