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"
};