Obyek Array

<!–

var buah = new Array (“Jambu”,”Apel”,”Melon”,”Semangka”,”Jeruk”);
document.write(“Nilai awal sebuah Array…

“);
var i;
for (i=0;i<buah.length;i++) {
document.write(buah[i]+”
“);
}

document.write(“

“);
document.write(“Hasil Array setelah Proses SORT…

“);
buah.sort();
for (i=0;i<buah.length;i++) {
document.write(buah[i]+”
“);
}

document.write(“

“);
document.write(“Hasil Array setelah Proses REVERSE…

“);
buah.reverse();
for (i=0;i<buah.length;i++) {
document.write(buah[i]+”
“);
}
//–>

Tinggalkan Balasan

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Ubah )

Twitter picture

You are commenting using your Twitter account. Log Out / Ubah )

Facebook photo

You are commenting using your Facebook account. Log Out / Ubah )

Connecting to %s


Ikuti

Get every new post delivered to your Inbox.