Теперь ваши любимые мюсли — музыкальные!
function Food(type){ this.type = type;}var foo = new Food('orange soda');var bar = new Food('cheeses');foo.type; // вернет 'orangeSoda'bar.type; // вернет 'cheeses'