My application creates a JavaScript object, like the following:
myObj= {1:[Array-Data], 2:[Array-Data]}
But I need this object as an array.
The best method would be using a javascript -only function:
var myArr = Array.prototype.slice.call(myObj, 0);