简体   繁体   中英

How to remove Objects from an array of objects using JavaScript?

I have an array of objects where some objects are undefined and I want to know how to remove them i got it how many of them but don't know how to remove them from an array of objects. i know this method to use but i want some more standard way to do it

    const data = [
        {
            roleDoc:{
                name:"A"
            }
        },
        { roleDoc: undefined }
        ,{
            roleDoc:{
                name:"c"
            }
        },{
            roleDoc:{
                name:"c"
            }
        },
        { roleDoc: undefined },
        ,{
            roleDoc:{
                name:"c"
            }
        }

    ]
 const xy = []
data.forEach(item => {
    if(item.roleDoc !== undefined){
       xy.push(item) 
    }
    else{
        console.log('hello')
    }
})
console.log(xy)

expected output is

const data = [
  {
    roleDoc: {
      name: "A"
    }
  },

  ,
  {
    roleDoc: {
      name: "c"
    }
  },
  {
    roleDoc: {
      name: "c"
    }
  },

  ,
  {
    roleDoc: {
      name: "c"
    }
  }
];

You can use .filter() to remove undefined ones.

Try the following:

 const data = [{ roleDoc:{ name:"A" } }, { roleDoc: undefined } ,{ roleDoc:{ name:"c"}},{roleDoc:{name:"c"} }, { roleDoc: undefined },{ roleDoc:{name:"c"}}]; const result = data.filter(e => e.roleDoc); console.log(result);

I hope this helps!

You could do with Array#filter and !! only matched valid

 const data = [ { roleDoc:{ name:"A" } }, { roleDoc: undefined } ,{ roleDoc:{ name:"c" } },{ roleDoc:{ name:"c" } }, { roleDoc: undefined },{ roleDoc:{ name:"c" } }]; let res = data.filter(a=> !!a.roleDoc); console.log(res)

You could use a function programming approach using the Array.filter function:

const data = [
    {
        roleDoc: {
            name: "A"
        }
    },
    { 
        roleDoc: undefined 
    },
    {
        roleDoc: {
            name: "c"
        }
    },
    {
        roleDoc: {
            name: "c"
        }
    },
    { 
        roleDoc: undefined
    },
    {
        roleDoc: {
            name: "c"
        }
    }
];

const arrayWithoutUndefineds = data.filter(el => typeof el.roleDoc !== 'undefined');

console.log(arrayWithoutUndefineds);

Note that the expression used could be simplied. However, so it it clear what it happening I will leave it there.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM