i have an object that i want to stringify. when i print the object using console.log, everything comes up normal without any issues
{
player: "Test",
items: [
'Stylish': { items: [Object] },
'Gas': { items: [Object] },
'Polished': { items: [Object] },
'Featherweight': { items: [Object] },
],
}
When i call JSON.stringify on the object the items array turns up blank though, how can i fix this?