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