format json file code example
Example 1: how to format json file in vs code
On Windows Shift + Alt + F.
On Mac Shift + Option + F.
Example 2: python format json file
python3 -m json.tool unformatted.json > formatted.json
Example 3: json beautify
fetch('https://fakestoreapi.com/products/6',{
method:"DELETE"
})
.then(res=>res.json())
.then(json=>console.log(json))