Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Pre-1132

var babyProduct=[
                  
            {
                name:'doveshampoo',
                color:'cream',
                price:200
            },
            
            {
                name:'himalaya',
                color:'white',
                price:250
            }
];
console.log(babyProduct);
console.log(babyProduct[0]);
console.log(babyProduct[1]);
console.log(babyProduct[0].name);
console.log('Total number of products',babyProduct.length);

for(var i=0;i<babyProduct.length;i++)
{
    console.log(babyProduct[i].name);
}

for(var i=0;i<babyProduct.length;i++)
{
    console.log(babyProduct[i].name + babyProduct[i].color + babyProduct[i].price);
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.