is it possible log a table of data to console log? Similar to what
console.table(a-multidimentional-array)
I am trying to eval if I can use postman to create a summary of information that looks like…
a two dimintional array
Total Packages | 100
Total Jobs Created | 90
Total Failed Jobs | 50
Total Completed Jobs | 40
A 3 diminutional array
Failed | Processing | 10
Failed | Packaging | 10
Failed | Delivery | 10
I was thinking each table could be a separate array. I am going to get each array item by parsing a JSON response of an API iterated with a few thousand records feed from a csv.
plz advice if there is a better way to log this info.