Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save reganstarr/f0856497de290b551b1a88b97a8587d8 to your computer and use it in GitHub Desktop.
Save reganstarr/f0856497de290b551b1a88b97a8587d8 to your computer and use it in GitHub Desktop.
var emailArray = ['email1@example.com', 'email2@example.com', 'email3@example.com'];
var array = [];
emailArray.forEach(function(email){
array.push({"email": email});
});
output = {output: JSON.stringify(array)};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment