I have an array with nested array
I want the data to append in a new array.
For the data extraction or filtration what method's i have to use, using library such as lodash
DATA
[ 
    [ 
        {
            _id: 588d9b8a608f2a66c298849f,
            email: 'sd@',
            password: '$2a$10$6..L3c3tANi6ydt9gZbc1O6prPfUd3RB.ner5lilxRyEwo1lPsSoC',
            isJobSeeker: true,
            __v: 0,
            lastName: 'shrestha',
            firstName: 'manish',
            isSeeker: true 
        }
    ],
    [ 
        { 
            _id: 588dbb4f7a48ce0d26cb99fd,
            jobId: [Object],
            seekerId: 588d9b8a608f2a66c298849f,
            employerId: 588d7d6c0ec4512feb819825,
            __v: 0,
        }
    ]
]
REQUIRED DATA
[
    { 
        _id: 588d9b8a608f2a66c298849f,
        email: 'sd@',
        password: '$2a$10$6..L3c3tANi6ydt9gZbc1O6prPfUd3RB.ner5lilxRyEwo1lPsSoC',
        isJobSeeker: true,
        __v: 0,
        lastName: 'shrestha',
        firstName: 'manish',
        isSeeker: true 
    },
    jobId: [{}, {}, {}] // ARRAY WITH OBJECTS
]
also i want to change the jobId key to other key of custom string as jobs
Following is my attempt:
console.log('Data filteration', data);
const filteredData = [];
filteredData.push(data[0][0]);
data[1].forEach((i) => {
  filteredData[0].jobs = i.jobId
});
console.log('filteredData', filteredData);
 
     
    