<html>
<body>
<h1>JavaScript Dates</h1>
<h1>The setSeconds() Method</h1>
<p>setSeconds() sets the seconds of a date object.</p>
<p id="demo"></p>
<script>
const d = new Date("2025-01-15");
d.setSeconds(35);
document.getElementById("demo").innerHTML = d;
</script>
</body>
</html>