JSON vs XML
<!DOCTYPE html> <html> <body> <h2>Result</h2> <p id="demo"></p> <script> const bookJson = { "title": "The Silent Orbit", "author": "L. Marsh", "year": 2019, "tags": ["sci-fi", "space"] }; console.log(JSON.stringify(bookJson)); </script> </body> </html>