how to comment whole code in javascript code example

Example 1: comment out in javascript

<script type="text/javascript">
<!--
document.write("I have multi-line comments!");
/*document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");*/
//-->
</script>

Example 2: js comment

//This does not effect the code.
var something = "But this does effect the code!";

Example 3: javascript comment

// For single line comment

/* For block of lines comment
...
...
*/