object to json javascript
var person={"first_name":"Tony","last_name":"Hawk","age":31};
var personJSONString=JSON.stringify(person);
object to json javascript
var person={"first_name":"Tony","last_name":"Hawk","age":31};
var personJSONString=JSON.stringify(person);
json example array
{
"name":"John",
"age":30,
"cars":[ "Ford", "BMW", "Fiat" ]
}
// Another exemple
{
"people": [
{
"website": "stackabuse.com",
"from": "Nebraska",
"name": "Scott"
},
{
"website": "google.com",
"from": "US",
"name": "Zuck"
}
]
}
js create json array
var employees = {
accounting: []
};
for(var i in someData) {
var item = someData[i];
employees.accounting.push({
"firstName" : item.firstName,
"lastName" : item.lastName,
"age" : item.age
});
}
json object
var myObj, x;
myObj = {"name":"John", "age":30, "car":null};
x = myObj.name;
document.getElementById("demo").innerHTML = x;
json object array
const Object = {a:1,
b:'ab'
};
const Array = [1,
'ab',
4
];
Array as JSON
const text = '["Ford", "BMW", "Audi", "Fiat"]';
const myArr = JSON.parse(text);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us