Files
Full-Stack-Notes/code/ES6/src/01_block_bindings/07_const.js
2019-12-15 19:03:36 +08:00

9 lines
114 B
JavaScript

const author = {
name: "heibai",
};
author.name = "ying";
console.log(author);
author = {
name: "heibaiying"
};