In Safari with no add-ons (and actually most other browsers), console.log will show the object at the last state of execution, not at the state when conso
console.log
conso
I defined an utility:
function MyLog(text) { console.log(JSON.stringify(text)); }
and when I want to log on console I simply do:
MyLog("hello console!");
It works very well!