json objects in javascript code example
Example 1: key value json javascript
var jsonArray = '{"required":1, "minlength":2}'
var jsonParsedArray = JSON.parse(jsonArray);
for (key in jsonParsedArray) {
if (jsonParsedArray.hasOwnProperty(key)) {
console.log("%c "+key + " = " + jsonParsedArray[key],"color:cyan");
}
}
Example 2: create a json object in javascript
var employee = {
"firstName": firstName,
"lastName": lastName
}
Example 3: json deep dot
Prototype code is available here
https://gist.github.com/Cirilord/d0d3f0ba7171deed26bfffe4787d6e0b
Example
let y = {}
Object.deep.(y, 'x.y.z')
console.log(y)
OR
let x = {}
Object.deep.(x, 'x.y.z', 10)
console.log(x)
Example 4: json objects
{ "name":"John", "age":30, "car":null }
Example 5: create a javascript json object
const student = {
name: "bob",
age: 7,
grade: 6
}