Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <script type="text/javascript">
- /** Comparison Operators & If... Else **/
- var a = true;
- if (a) {
- document.writeln("kondisi variabel a benar");
- } else {
- document.writeln("kondisi variabel a salah");
- };
- // Comparison Operators: > < <= >= == !=
- var umur = 10;
- if (umur >= 18) {
- document.writeln("Kamu sudah dewasa!");
- } else if (umur < 2) {
- document.writeln("Kamu masih bayi!");
- } else if (umur < 18) {
- document.writeln("Kamu masih anak-anak!");
- };
- if (umur != 18) {document.writeln("Kamu bukan berumur 18 tahun.")};
- </script>
- </html>
Add Comment
Please, Sign In to add comment