这可能是一个非常简单的问题,但我找不到答案。 我有一个对象/映射,我不想迭代,但访问特定的键/值在索引。
例如:
var _results = {
'Key_1' : 'Value_1',
'Key_2' : 'Value_2',
};
如何访问索引[1]的 key _ 2和 value _ 2?
我试过 _results[index]
、 _results[index].value
、 _results[index].key
和 _results[index].toString()
,但都返回空。