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

1.不定参

js传不定参,函数内部有一个arguments对象,接收传递过来的参数
arguments对象是一个类数组对象

  1. <script>
  2. function go(a){
  3. console.log(arguments)
  4. console.log(a);
  5. }
  6. go(10,12);
  7. </script>