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