If you use Underscore, you can simply use the Values helper to return an array of all the values in your object.
Option 1: Use Underscore
values_.values(object)
Return all of the values of the object's own properties.
_.values({one: 1, two: 2, three: 3});
=> [1, 2, 3]
So to get your values out of your object, you would just include the Underscore library and use the following code:
var myValues = _.values(MyOBj);
myValues;
// => ["(JSON.stringified object)", "(JSON.stringified object)"]
I highly recommend Underscore, as you will be able to do the same thing for the keys of your Object, as well as perform a bunch of other useful functions.
Option 2: Pure JS Solutions
If you find yourself in the situation where you are including the entire Underscore library just for this one function, you will have a lot of code bloat on your hands. Instead, you may head over to this StackOverflow question where qubyte outlines many solutions. They all pretty much define helpers to accurately perform the function you are looking for, which is why Underscore is just so useful from the outset.