Skip to content

Instantly share code, notes, and snippets.

@jasonknight
Created November 4, 2019 23:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonknight/b437146284f957824c9423fa9d4d7014 to your computer and use it in GitHub Desktop.
Save jasonknight/b437146284f957824c9423fa9d4d7014 to your computer and use it in GitHub Desktop.
var user_data = {
admin_users: [
{
role: 'admin',
email: 'fakeadmin1@email.com'
},
{
role: 'admin',
email: 'fakeadmin2@email.com'
},
],
admin_user_emails: ['fakeadmin1@email.com','fakeadmin2@email.com'],
regular_users: [
{
role: 'user',
email: 'fakeuser@email.com'
}
]
};
console.log(user_data.admin_user_emails);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment