x
1
2
<html>
3
<body>
4
5
<h2>JSON.stringify() converts date objects into strings.</h2>
6
<p id="demo"></p>
7
8
<script>
9
const obj = {name: "Ahmed", today: new Date(), city : "Cairo"};
10
const myJSON = JSON.stringify(obj);
11
document.getElementById("demo").innerHTML = myJSON;
12
</script>
13
14
</body>
15
</html>