Array.prototype.toObjectByProperty( element=>element.property )

T.J. Crowder tj.crowder at farsightsoftware.com
Sat Aug 5 11:47:33 UTC 2017


On Sat, Aug 5, 2017 at 12:41 PM, T.J. Crowder
<tj.crowder at farsightsoftware.com> wrote:

Apologies, better proofreading required, left out the `"id"` argument:

```js
const a = [{id: "tjc", name: "T.J. Crowder"}, {id: "nc", name: "Naveen
Chawla"}, {id: "lh", name: "Lachlan Hunt"}];
const index = Object.from(a, "id");
console.log(index);
```

-- T.J. Crowder


More information about the es-discuss mailing list