when I do this in node.js: console.log(someObject) I got [Object] or [Array]. How do I see what's inside without access to it? Like seeing the "entire" thing. I tried JSON.stringify but it only format it, it doesn't expand it.
console.log(someObject)
[Object]
[Array]