console.log("my object: %o", myObj)
Otherwise you’ll end up with a string representation sometimes displaying:
[object Object]
or some such.
console.log("my object: %o", myObj)
Otherwise you’ll end up with a string representation sometimes displaying:
[object Object]
or some such.