Sintaxis
_.indexBy(list, iteratee, [context])
El método indexBy obtiene las listas divididas agrupadas por índice devuelto por el método iteratee proporcionado.
Ejemplo
var _ = require('underscore');
var list = [{"title": "Learn Java", "Author": "Sam", "Cost": 100},
{"title": "Learn Scala", "Author": "Joe", "Cost": 200},
{"title": "Learn C", "Author": "Julie", "Cost": 300} ]
//Example 1. invoke indexBy method to get objects indexed by their cost
var result = _.indexBy(list, 'Cost');
console.log(result);
//Example 2. invoke indexBy method to get objects indexed by their author
result = _.indexBy(list, 'Author')
console.log(result)
Guarde el programa anterior en tester.js. Ejecute el siguiente comando para ejecutar este programa.
Mando
\>node tester.js
Salida
{
'100': { title: 'Learn Java', Author: 'Sam', Cost: 100 },
'200': { title: 'Learn Scala', Author: 'Joe', Cost: 200 },
'300': { title: 'Learn C', Author: 'Julie', Cost: 300 }
}
{
Sam: { title: 'Learn Java', Author: 'Sam', Cost: 100 },
Joe: { title: 'Learn Scala', Author: 'Joe', Cost: 200 },
Julie: { title: 'Learn C', Author: 'Julie', Cost: 300 }
}