How can I access the key of a non-associate array? Here's my scenario, I have an array of objects (in this case, they are coordinates):
coords[0] = {x: 37.543524, y: -56.65474}
coords[1] = {x: 35.041292, y: -76.03135}
//etc..
I'm using a jQuery templating plugin to print out the results:
$('#repeater').tmpl(coords).appendTo('body');
<script id="repeater" type="text/html">
<p>[${key??}] ${x}, ${y}</p><br/>
</script>
In the template, I have access to the object properties but not the index. Is there an easy way to retrieve the key of that object in the array? Or would I have to modify the plug-in to give me access to it?
Thanks!