I have an object that looks like this.
Object {Dry Aged Ribeye(medium): "1"
, Dry Aged Ribeye(rare): "1"
, Dry Aged Ribeye(well): "1"
, favorite_tables: "{"dc76e9f0c0006e8f919e0c515c66dbba3982f785":[]}"
}
I wish to insert this to mysql in single column as is. If I try to insert it, it just says [object Object]. I tried to make it into string by JSON.stringify, Array.join() but no luck.
Help me convert this object into string.