2
入力オブジェクトを「キー」する機能はどのように見えますか?私はその話題を研究していますが、良い答えは見つかりませんでした。だから、オブジェクトに動的キーを追加できますか?
、私は入力オブジェクトを持っている場合...
var fruits = [{fruit: "apple", taste: "sour"},
{fruit: "cherry", taste: "sweet", color: "red"}];
functionname(fruits, function(i) { return i.fruit; });
RETURN:
{ "apple": [{fruit: "apple", taste: "sour"}],
{ "cherry": [{fruit: "cherry", taste: "sweet", color: "red"}]
functionname(fruits, function(i) { return i.taste.length; });
RETURN:
{ "4": [{fruit: "apple", taste: "sour"}],
{ "5": [{fruit: "cherry", taste: "sweet", color: "red"}]
私の最初の思考ワットと
Array#forEach
バージョンとバージョンforEachとして、しかしforEachはArray.forEach(コールバック)なので、代わりに '[]] .forEach.call'です。 – Keith