My object has the following structure:
Object {Dry Aged Ribeye(medium): "1"
, Dry Aged Ribeye(rare): "1"
, Dry Aged Ribeye(well): "1"
, favorite_tables: "{"dc76e9f0c0006e8f919e0c515c66dbba3982f785":[]}"
}
I am trying to insert this into MySQL in a single column as is. However, when I attempt to do so, it just displays [object Object]. I have attempted methods like JSON.stringify and Array.join(), but they have not worked.
Can you help me convert this object into a string?