Skip to content

输出是什么?

Posted on:2021年7月3日 at 22:10
const obj = { a: "one", b: "two", a: "three" };
console.log(obj);

如果你有两个名称相同的键,则键会被替换掉。它仍然位于第一个键出现的位置,但是值是最后出现那个键的值。

原文转自:https://fe.ecool.fun/topic/ecb779c3-a28f-45c8-bcdc-25b8d7948e1a