gpt4 book ai didi

javascript - 使用带点符号的整数键访问 javascript 对象中的属性

转载 作者:行者123 更新时间:2023-11-30 10:04:32 24 4
gpt4 key购买 nike

为什么我们不能在点表达式中使用整数键来访问属性值?

var obj = {1: 'one', two: '2'}
console.log(obj.1) // error
console.log(obj.two)

最佳答案

如果是dot notation要访问一个值,属性键必须是一个有效的标识符

In this code, property must be a valid JavaScript identifier, i.e. a sequence of alphanumerical characters, also including the underscore ("_") and dollar sign ("$"), that cannot start with a number. For example, object.$1 is valid, while object.1 is not.

您可以使用 bracket notation在这种情况下

obj['1']

规范:Property Accessors

关于javascript - 使用带点符号的整数键访问 javascript 对象中的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29888256/

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