“Ctrl+/”
“F11/ESC”
<!DOCTYPE html>
<html>
<head>
<script type="text/vbscript">
Sub mySub()
msgbox("This is a Sub procedure")
End Sub
</script>
</head>
<body>
Call mySub()
<p>A Sub procedure does not return a result.</p>
</body>
</html>