<script> var x = 10; var y = 60; document.write((x>30 && y>50) + "<br>"); document.write((x>30 || y>50) + "<br>"); document.write(!(x == y) + "<br>"); </script>
- 난이도(1~10) : 1
false true true