gpt4 book ai didi

没有 key 的 Javascript Prop 分配?

转载 作者:行者123 更新时间:2023-11-29 17:55:21 25 4
gpt4 key购买 nike

let text = 'how are you';
let foo = {
type : 'foo',
text
};
console.log(foo);

为什么text键是自动分配的,有没有这种语法的引用?

最佳答案

这是一个 shorter notation在 ECMAScript 2015(ES6) 对象初始值设定项中。

//ES5
var a = "foo",
b = 42,
c = {};

var o = {
a: a,
b: b,
c: c
};

//ES6 shorter notation available to achieve the same:
var o = { a, b, c };

关于没有 key 的 Javascript Prop 分配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39629985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com