Convert JS Object to JSON

Input data

This form allows you convert Javascript literal object to JSON, paste or upload your JS object below:


Your result can be seen below.

Result of JS object conversion to JSON


Move to "Paste Code" for Save it

About Javascript object conversion to JSON

About JS Object conversion to JSON

The Javascript object to JSON Converter was created for online transform literal JavaScript object into JSON object. JS object is similar to JSON, the only difference is the presence of double quotes in JSON attribute names. You do not need to download any tools for conversion.

How it Works?

Just paste your JS Object to the textarea above and click to the button "Convert" and you will get JSON.

Example of Javascript object conversion to JSON

Before:
{
	animals: {
		dog: [
			{
				name: "Rufus",
				breed: "labrador",
				count: 1,
				twoFeet: false
			},
			{
				name: "Marty",
				breed: "whippet",
				count: 1,
				twoFeet: false
			}
		],
		cat: {
			name: "Matilda"
		}
	}
}
After:
{
	"animals": {
		"dog": [
			{
				"name": "Rufus",
				"breed": "labrador",
				"count": 1,
				"twoFeet": false
			},
			{
				"name": "Marty",
				"breed": "whippet",
				"count": 1,
				"twoFeet": false
			}
		],
		"cat": {
			"name": "Matilda"
		}
	}
}
After the conversion, you can apply the JSON object to your project or use it for some other purpose.
Donate

Did you like this tool? You can donate to us. This will help us improve our free web tools.

Paypal