“Ctrl+/”
“F11/ESC”
<!DOCTYPE html>
<html>
<head>
<title>
Logical AND Example 2
</title>
<script type="text/javascript">
var found = false;
var result = (found && someUndeclaredVariable); //no error
alert(result); //works
</script>
</head>
<body>
</body>
</html>