How to change htm h1 from nodejs code example
Example 1: How to change htm h1 from nodejs
<html>
<head></head>
<body>
<h1></h1>
<script src='test.js'></script>
</body>
</html>
Example 2: How to change htm h1 from nodejs
let h1 = document.getElementsByTagName('h1')[0];
h1.innerHTML = "Hello";