以下の「成分」の値のように、二重にネストされたオブジェクト リテラルを使用できますか (構文は正しいですか)?
recipes = [
{name: 'Zucchini Muffins', url: 'pdfs/recipes/Zucchini Muffins.pdf',
ingredients: [{name: 'carrot', amount: 13, unit: 'oz' },
{name: 'Zucchini', amount: 3, unit: 'sticks'}]
}
];
もしそうなら、「成分」オブジェクトの「単位」値にどのようにアクセスしますか?
私はこのようなことをすることができますか?
疑似コード
for each recipes as recipe
print "this recipe requires"
for each recipe.ingredients as ingredients
ingredients.amount + " " + ingredients.unit;
(javascriptを使おうと思っています)