“Ctrl+/”
“F11/ESC”
<!DOCTYPE html>
<html>
<head>
<title>
Bitwise AND Example 1
</title>
<script type="text/javascript">
var result = 25 & 3;
alert(result); //outputs 1
</script>
</head>
<body>
</body>
</html>