Erwägen:
var object = {
foo: {},
bar: {},
baz: {}
}
Wie würde ich das machen:
var first = object[0];
console.log(first);
Offensichtlich funktioniert das nicht, weil der erste Index benannt ist foo
, nicht 0
.
console.log(object['foo']);
funktioniert, aber ich weiß nicht, dass es foo heißt. Es könnte alles benannt werden. Ich will nur den ersten.