How can i access this type of structure in java script. i want to access these emails one by one.
          var somevar[];
       console.log(somevar);
     **Below is the result**-:
      [ {email: 'xyz@gmail.com' },
      { email: 'xyz@gmail.com' },
      { email: 'xyz@gmail.com' },
      { email: 'xyz@gmail.com' }]
At last i want to send email to the above email ids.Now how to put a loop on somevar to access the list of emails
 
    