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)