摘要: const a = 5 // a = 10 // TypeError: Assignment to constant variable. const obj = { name: '张三' } obj.name = '李四' console.log(obj) // {name: "李四"} Objec 阅读全文
posted @ 2022-09-07 17:11 千年轮回 阅读(150) 评论(0) 推荐(0) 编辑