html to json string code example
Example 1: Javascript object to JSON string
var person={"first_name":"Tony","last_name":"Hawk","age":31};
var personJSONString=JSON.stringify(person);
Example 2: html to json
fetch('https://www.example.com/index.html')
.then(res => res.text())
.then(html => console.log(html));