The most viewed items
/*
const countries = ["USA", "UK", "Canada"];
document.write(countries);
//example one
const names = ["Hla Hla", "Mya Mya", "Soe Soe"];
document.write(names);
//example two
const cities = [
"Yangon",
"Mandalay",
"Meikhtila"
];
document.write(cities);
//example three
const countries = [];
countries[0] = "USA";
countries[1] = "UK";
countries[2] = "Canada";
document.write(countries);
//example four
//creating array by using new keyword
const countries = new Array("USA", "UK", "Canada");
document.write(countries); */
//Arrays are special types of objects
const myNmae = {first: "Thet", middle: "Naing", last: "Win"};
document.write(myNmae.last);
No comment to show.