Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Deklarasi variabel usia
- var usia = 20;
- // Percabangan if-else untuk menentukan apakah pengguna boleh mengakses halaman
- if (usia >= 18) {
- console.log('Selamat datang! Anda boleh mengakses halaman ini.');
- } else {
- console.log('Maaf, Anda belum cukup usia untuk mengakses halaman ini.');
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement