“Ctrl+/”
“F11/ESC”
<!DOCTYPE html>
<html>
<head>
<title>Function Declaration Hoisting Example</title>
</head>
<body>
<script type="text/javascript">
sayHi();
function sayHi(){
alert("Hi!");
}
</script>
</body>
</html>