JSFiddle - React, Tailwind, and code Playground

by smichelotti

JavaScript

const data = [{
    "implementation": "PAAS-BASELINE",
    "ownership": "Customer"
  },
  {
    "implementation": "IAAS-BASELINE",
    "ownership": "Customer"
  },
  {
    "implementation": "PAAS-BLUEPRINT-BASELINE",
    "ownership": "Customer"
  },
  {
    "implementation": "IAAS-BLUEPRINT-BASELINE",
    "ownership": "Customer"
  }
];

const result = _.flatMap(data, 'implementation');
console.log(result);