<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="utf-8">
<title>JavaScript Comparisons</title>
</head>
<body>
<script>
var a = 2, b = 5, c = 10;
document.write(b > a) // Output: true
document.write("<br>");
document.write(b > c) // Output: false
</script>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.