Multi-lines comment in JS

PHOTO EMBED

Tue Dec 01 2020 08:47:36 GMT+0000 (Coordinated Universal Time)

Saved by @Amna #javascript

<!DOCTYPE html>
<html>
<body>
​
<h1 id="myH"></h1>
<p id="myP"></p>
​
<script>
/*
The code below will change
the heading with id = "myH"
and the paragraph with id = "myP"
*/
document.getElementById("myH").innerHTML = "JavaScript Comments";
document.getElementById("myP").innerHTML = "My first paragraph.";
</script>
​
</body>
</html>
​
content_copyCOPY

https://www.w3schools.com/js/tryit.asp?filename