-1

How do I get the choices to be just a specific value from all objects in the array?

Here's an example array:

var array = 
[{
  a: 1,
  b: 2,
},
{
 a: 3,
 b: 4,
},
{
  a: 5,
  b: 6,
}]

And then later the inquirer is something like:

inquirer
.prompt({
  name: "test",
  type: "list",
  message: "Example Question",
  choices: [{array.b}]
})

My desired result would be the following as inquirer options for the list question:

[2,4,6]
Valborg
  • 95
  • 2
  • 10

1 Answers1

0

If you want to get the b values only you can use lodash map and iterator methods to achieve that. Ex:

_.map(array, _.iteratee('b'); // [2,4,6]

Mistico
  • 231
  • 3
  • 4