9 lines
114 B
JavaScript
9 lines
114 B
JavaScript
const author = {
|
|
name: "heibai",
|
|
};
|
|
author.name = "ying";
|
|
console.log(author);
|
|
author = {
|
|
name: "heibaiying"
|
|
};
|