I want to return rj: Object
below, and I have an index key to match, kid: 1
. What's the best/fastest way of doing considerg the main Object
can contain > 10k items?
Object
coord: MM.Coordinate
data: Object
geometry: Object
properties: Object
kid: 1 <== index id
rj: Object <== object i want
__proto__: Object
__proto__: Object
element: HTMLDivElement
location: MM.Location
touch: true
__proto__: Object
Object
is main, yes. So I'll have 10k's of those. Then the unique identifier is deep inObject[properties[kid]]
, and the object I actually want is its next door neighbour. – knutole yesterdaykid
counts as index. I mean, that would be great! ;) – knutole yesterdayproperties
,kid
andrj
properties? – Joseph the Dreamer yesterday