Javascript Object Debug
via http://davidwalsh.name/javascript-debugging-tip-objects
var i = {
foo: {}
};
console.log(i);
i.inject = true;
output in Chrome :
To fix this :
var i = {
foo: {}
};
console.log(JSON.parse(JSON.stringify(i)));
i.inject = true;
Didn't knew that, might be helpful
Written by Nicolas Chevobbe
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Debug
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#