Answers for "json beautifier"

1

beautify json python

>>> import json
>>> print json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4)
{
    "4": 5,
    "6": 7
}
Posted by: Guest on June-11-2020
2

json placholder

fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(response => response.json())
  .then(json => console.log(json))
Posted by: Guest on December-12-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language