This is my Object
var data = { a:{\"0\": \"1\"}, b:{\"1\": \"2\"}, c:{\"2\": \"3\"}, d:{\"3\": \"4\"} };
This is the output
var array = []; for(var item in data){ // this condition is required to prevent moving forward to prototype chain if(data.hasOwnProperty(item)){ array.push(data[item]); } }