When debugging using console.log(), how can I get the full object?
console.log()
const myObject = { \"a\":\"a\", \"b\":{ \"c\":\"c\", \"d\":
If you're looking for a way to show the hidden items in you array, you got to pass maxArrayLength: Infinity
maxArrayLength: Infinity
console.log(util.inspect(value, { maxArrayLength: Infinity }));