← All Posts
Blog
June 14, 2021

Get list key of array object javascript with Lodash

Get list key of array object javascript with Lodash

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"]