Hello, I need to copy an (ordered, not associative) array of objects. I'm using jquery. I initially tried
jquery.extend({}, myArray)
but, naturally, this gives me back an object, where I need an array (really love jquery.extend, by the way). So, what's the best way to copy an array?