Sythz

Untitled

Sep 3rd, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.74 KB | None | 0 0
  1. !DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Hanif Abyan Ayyasyi XI RPL 2</title>
  8. </head>
  9. <body>
  10.     <p id="test">Penggunaan ELSE IF bertujuan untuk mengganti if dalam jumlah banyak</p>
  11.    
  12.     <script>
  13.         var d = new Date()
  14.         var time = d.getHours()
  15.  
  16.         if(time < 9)
  17.        {
  18.            document.write("Selamat Pagi ! ");
  19.        }
  20.        else if(time >= 12 && time < 3)
  21.        {
  22.            document.write("hari yang panas ! ");
  23.         }
  24.         else
  25.         {
  26.             document.write("HEIIII")
  27.         }
  28.     </script>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment