admin管理员组文章数量:1352015
I tried to print a multi-nested object or array to my vscode terminal window and vscode output. My result is a simplified version of what I was trying to print where a generic array/object is shown for anything deeper than 3 layers of nesting. Is there a way to turn off that setting so I can see exactly what is in there? Is there a way to format how my terminal window displays results in general?
let nestedObj1 = [1,{23:{3:4,3:{5:6,7:{3:4,5:{5:1}}}}}]
let nestedArray = [1,2,3,4,[1,2,2,4,2,[3,[4,[5,[1,3,2,3,[1,2,3,4]]]]]]]
console.log(nestedObj1,'\n',nestedArray)
I tried to print a multi-nested object or array to my vscode terminal window and vscode output. My result is a simplified version of what I was trying to print where a generic array/object is shown for anything deeper than 3 layers of nesting. Is there a way to turn off that setting so I can see exactly what is in there? Is there a way to format how my terminal window displays results in general?
let nestedObj1 = [1,{23:{3:4,3:{5:6,7:{3:4,5:{5:1}}}}}]
let nestedArray = [1,2,3,4,[1,2,2,4,2,[3,[4,[5,[1,3,2,3,[1,2,3,4]]]]]]]
console.log(nestedObj1,'\n',nestedArray)
Share
Improve this question
asked Dec 23, 2020 at 4:08
YinYin
961 silver badge6 bronze badges
1 Answer
Reset to default 13It's probably easiest to see nested values in the interactive JS debugger in VSCode. If you can't do that for whatever reason, a trick to show all the deeply nested values would be to console.log
the value after using JSON.stringify
to transform the entire structure into a string. In your case, you could do:
console.log(JSON.stringify(nestedObj1, null, 2))
The null
and 2
arguments control how the JSON is formatted when it is serialized.
本文标签: javascriptvscode not showing object more than 3 nests deep in terminal windowoutputStack Overflow
版权声明:本文标题:javascript - vscode not showing object more than 3 nests deep in terminal windowoutput - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743905305a2559411.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论