How to access name, quantity, price from the object product

product={
“name”:“Apple”,
“quantity”:6,
“price”:100
}
product.name;
product.quantity;
product.price;

1 Like

@himachandranp65

Nice explanation.