//Here the examples of object in JavaScript..
const profile={
username:"Shubh Kulshrestha",
posts:1,
followers:85,
following:157,
};
console.log(profile);
const product={
name:"Pen",
price:200,
rating:4,
};
console.log(product);