1-1声明一个变量

  1. var a = 10;
  2. console.log(a); //10
  3. var a;
  4. console.log(a); // undefined
  5. // 声明一个变量不赋值 输出undefined