Convert HTML code to JSON code example
Example: html to json
fetch('https://www.example.com/index.html')
.then(res => res.text())
.then(html => console.log(html));
fetch('https://www.example.com/index.html')
.then(res => res.text())
.then(html => console.log(html));