Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

converting enum object to array returns extra object in javascript

I would like to know how to convert enum object to array of objects in javascript

It works, but am getting the output with four object arrays instead of two object arrays

const result = Object.entries(countries).map(([value, key]) =>
   ({ country: value.toLowerCase(), id: key })
);

enum countries {
  SINGAPORE = 123,
  DENMARK = 246
}

Actual Output:

[
  {country: '123', id: 'singapore'}
  {country: '246', id: 'denmark'}
  {country: 'singapore', id: 123}
  {country: 'denmark', id: 246}
]

Expected Output:

[
  {country: "singapore", id: 123},
  {country: "denmark", id: 246}
]
like image 322
sen Avatar asked May 24 '26 10:05

sen


1 Answers

It's important to understand the JavaScript that typescript generates when you use enum - yours will look like this:

{
    "123":"SINGAPORE",
    "246":"DENMARK",
    "SINGAPORE":123,
     "DENMARK":246
}

Which should make it clear why you get 4 items when you enumerate it using Object.entries (or Object.keys etc).

You can filter out the numeric values if you wish

var countries = {
        "123":"SINGAPORE",
        "246":"DENMARK",
        "SINGAPORE":123,
         "DENMARK":246
    }

const result = Object.entries(countries)
                    .filter(([key,_]) => !isNaN(key))
                    .map(([key, value]) => ({ country: value.toLowerCase(), id: key }));
                    
console.log(result);
like image 158
Jamiec Avatar answered May 25 '26 23:05

Jamiec



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!