当const 为对象的时候可以修改属性的值

    1. const a = {
    2. value:111
    3. }
    4. a.value = 222
    5. console.log(a)
    6. {
    7. value:222
    8. }