html to json javascript code example
Example 1: javascript parse json
var jsonPerson = '{"first_name":"billy", "age":23}';
var personObject = JSON.parse(jsonPerson); //parse json string into JS object
Example 2: js string to json
var obj = JSON.parse("{no:'u',my:'sql'}");//returnes {no:'u',my:'sql'}
Example 3: html to json
fetch('https://www.example.com/index.html')
.then(res => res.text())
.then(html => console.log(html));