javascript - Expand {...} in IE developer console -


when use javascript console in i.e -8 cross browser testing , bug fixing, , try view object in it's expanded form (like 1 comes in chrome dev console) - gives {...} - how make i.e 8 expand key value pairs when using developer console view object properties.

snapshot: https://www.imageupload.co.uk/image/z68s

back in day, have struggled ie's "[object object]" logs. used 1 of these approaches:

  • switch debug mode (script tab > start debugging), add breakpoints , watch variables (watch tab on right) change
  • use json.stringify full-text representation of objects. improved readability try: json.stringify(data, null, "\t")

lastly, have sympathies having develop ie 8 :)


Comments