// var a; // let b; // const c; 报错 // const a=1; // a={} 报错 const obj={a:10}; obj.a=20; console.log(obj);