How to preformat whole-row JSON data into an observable and standard format

for example, there is a whole row of JSON data
clipboard.png
and what I need is
{

productNo:xxx,
key1:value1,
key2:value2

}
in this form

Sep.16,2021

JSON.parse(objStr)//obj

JSON.stringify(obj,null,2)//

1. The easiest way is to open the console console, to paste, enter
2, and JSON.parse (JSON.stringify (data))

).
Menu