When debugging using console.log(), how can I get the full object?
console.log()
const myObject = { \"a\":\"a\", \"b\":{ \"c\":\"c\", \"d\":
Both of these usages can be applied:
// more compact, and colour can be applied (better for process managers logging) console.dir(queryArgs, { depth: null, colors: true }); // get a clear list of actual values console.log(JSON.stringify(queryArgs, undefined, 2));