// Define the product object
const product = {
id: 1,
name: 'Product 1',
price: 10.99
};
// Define the cart object
const cart = {
items: [],
addItem(item) {
this.items.push(item);
}
};
// Add the product to the cart
cart.addItem(product);
// Print the items in the cart
console.log(cart.items);