Tag: Dimensi
Program JavaScript untuk Mendapatkan Dimensi Gambar an
Contoh: Dapatkan Dimensi Gambar // program to get the dimensions of an image const img = new Image(); // get the image img.src=”https://cdn.programiz.com/sites/tutorial2program/files/cover-artwork.png”; // get height and width img.onload = function() { console.log(‘width ‘ + this.width) console.log(‘height ‘+ this.height); } Keluaran width 1040 height 922 Pada program di atas, new Image() konstruktor digunakan untuk membuat […]
Read more »Program JavaScript untuk Membuat Array Dua Dimensi
Contoh: Array Dua Dimensi Menggunakan untuk Loop // program to create a two dimensional array function twoDimensionArray(a, b) { let arr = []; // creating two dimensional array for (let i = 0; i< a; i++) { for(let j = 0; j< b; j++) { arr[i] = []; } } // inserting elements to array […]
Read more »