json w3schools code example
Example 1: format JSON code javascript
console.log(JSON.stringify({ alpha: 'A', beta: 'B' }, null, '\t'));
// Result:
// '{
// "alpha": A,
// "beta": B
// }'
Example 2: create a json object in javascript
var employee = {
"firstName": firstName,
"lastName": lastName
}
Example 3: json object
var myObj, x;
myObj = {"name":"John", "age":30, "car":null};
x = myObj.name;
document.getElementById("demo").innerHTML = x;