Get list key of array object javascript with Lodash

Thumbnail image

Please install lodash with npm or CDN

import _ from "lodash";

let object = {
  name:"John",
  address:"Bekasi",
  phone:"123456"
};

let key = _.keys(object);

//console key = ["name","address","phone"]