Last Updated: February 25, 2016
·
350
· nchevobbe

Javascript Object Debug

via http://davidwalsh.name/javascript-debugging-tip-objects

var i = {
  foo: {}
};

console.log(i);
i.inject = true;

output in Chrome :

Picture

To fix this :

var i = {
  foo: {}
};

console.log(JSON.parse(JSON.stringify(i)));
i.inject = true;

Picture

Didn't knew that, might be helpful