DOM (Document Object Model) adalah representasi struktur dokumen HTML atau XML dalam bentuk pohon yang memungkinkan Anda untuk memanipulasi dan mengubah konten, struktur, dan gaya halaman web menggunakan JavaScript. DOM menyediakan antarmuka untuk berinteraksi dengan elemen-elemen di dalam halaman web.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// While | |
console.log("Kasus 1") | |
let count = 0 | |
// Kondisi (jika benar maka proses dijalankan) | |
// Kondisi (jika salah maka proses diberhentikan) | |
while (count <= 6) { | |
console.log("Sebelum "+count) | |
count++ //increment variabel count +1 | |
console.log("Sesudah "+count) |