json parsing code example
Example 1: javascript parse json
var jsonPerson = '{"first_name":"billy", "age":23}';
var personObject = JSON.parse(jsonPerson);
Example 2: if json then parse
function isJson(str) {
try {
let value = JSON.parse(str);
return value
} catch (e) {
return str;
}
}
Example 3: javascript parse json
const json = '{ "fruit": "pineapple", "fingers": 10 }';
const obj = JSON.parse(json);
console.log(obj.fruit, obj.fingers);
Example 4: js string to json
var obj = JSON.parse("{no:'u',my:'sql'}");
Example 5: json parse
<!DOCTYPE html>
<html>
<body>
<h2>Convert a string into a date object.</h2>
<p id="demo"></p>
<script>
var text = '{"name":"John", "birth":"1986-12-14", "city":"New York"}';
var obj = JSON.parse(text);
obj.birth = new Date(obj.birth);
document.getElementById("demo").innerHTML = obj.name + ", " + obj.birth;
</script>
</body>
</html>
Example 6: json parsing techniques
Json Path
and
Deserialization of Json
using POJO classes.