I want to create a new "product" object and specify its properties (name, and etc), through the function "addProduct"
var storage = [
{product: {name: "cat", count: 3443, price: 1000}}
];
function addProduct(newProduct) {
var newProduct = this.product;
}
var addProd = new addProduct("dog", 1488, 2000);