Skip to content

Latest commit

 

History

History
25 lines (24 loc) · 595 Bytes

Formatting.md

File metadata and controls

25 lines (24 loc) · 595 Bytes

Formatting Options

Below are examples of the Formatting options available using the output from the example above; minus the Indented format since you've already seen that.

Compressed

{"name":"John Doe","age":33,"sex":"Male","married":true,"isAwesome":true}

JavascriptCompressed

{name:"John Doe",age:33,sex:"Male",married:true,isAwesome:true}

JavascriptIndented

{
	name: "John Doe",
	age: 33,
	sex: "Male",
	married: true,
	isAwesome: true
}

Spaces

{ "name" : "John Doe" , "age" : 33 , "sex" : "Male" , "married" : true , "isAwesome" : true }