When debugging using console.log(), how can I get the full object?
console.log()
const myObject = { \"a\":\"a\", \"b\":{ \"c\":\"c\", \"d\":
Easiest option:
console.log('%O', myObject);