├── main.js └── index.html /main.js: -------------------------------------------------------------------------------- 1 | let result = ""; 2 | let baris = ["12345", "678910", "98765", "43210"]; 3 | 4 | for (let i = 0; i < baris.length; i++) { 5 | result += baris[i] + "\n"; 6 | } 7 | 8 | console.log(result); -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Perulangan Ke-5 7 | 8 | 9 | 10 | 11 | 12 | --------------------------------------------------------------------------------