1

Suppose I have an object from that has a key and value pair and I want to reformat it into a simple javascript array:

 var obj = {STRUCTURE_: '004A006', SEG_ID: '04081591__,0.12,0.25,65850'}

that looks like this:

 ['004A006', '04081591__,0.12,0.25,65850']

Whats the easiest way to do that?

gwydion93
  • 1,681
  • 3
  • 28
  • 59

1 Answers1

2

Use Object.values to get the object's enumerable property values:

var obj = {STRUCTURE_: '004A006', SEG_ID: '04081591__,0.12,0.25,65850'}

const res = Object.values(obj)

console.log(res)
Spectric
  • 30,714
  • 6
  • 20
  • 43