私は JS ライブラリUnderscoreを使用しており、特に_.each
and_.sortby
ライブラリ呼び出しを使用しています。イテレータデリゲート内の値のインデックスを取得する方法があるかどうか疑問に思っています
_.sortBy([1, 4, 2, 66, 444, 9], function(num){
/*It'd be great to have access to the index in here */
return Math.sin(num);
});