有没有办法使用数字类型作为对象键?
2022-08-30 04:11:13
似乎当我在对象中使用数字类型作为键名时,它总是被转换为字符串。有没有真正让它存储为数字?正常的类型转换似乎不起作用。
例:
var userId = 1;
console.log( typeof userId ); // number
myObject[userId] = 'a value';
console.dir(myObject);
目录输出:
{
'1': 'a value'
}
我想要的是这个:
{
1: 'a value'
}
建议?