Defining Objects

From rbachwiki
Revision as of 19:23, 25 October 2016 by Bacchas (talk | contribs)
Jump to navigation Jump to search
 var comptype = {
 brand: 'ibm',
 ram: '128 Gigs',
 hdrive: '1 Terabyte'

}

Loop through items

for(var item in comptype){
console.log(item + " - " + comptype[item]);

Back To Top- Home - Category