Skip to content

Instantly share code, notes, and snippets.

@potikanond
Last active January 20, 2020 15:21
Show Gist options
  • Save potikanond/443588502f374361da35704587cbe1b6 to your computer and use it in GitHub Desktop.
Save potikanond/443588502f374361da35704587cbe1b6 to your computer and use it in GitHub Desktop.
Members - Arrays of objects in JavaScript and JSON
const members = [
{
id: 1,
name: 'John Doe',
email: '[email protected]',
status: 'active'
},
{
id: 2,
name: 'Bob Williams',
email: '[email protected]',
status: 'inactive'
},
{
id: 3,
name: 'Shannon Jackson',
email: '[email protected]',
status: 'active'
}
];
module.exports = members;
[
{
"id": "1",
"name": "John Doe",
"email": "[email protected]",
"status": "active"
},
{
"id": "2",
"name": "Bob Williams",
"email": "[email protected]",
"status": "inactive"
},
{
"id": "3",
"name": "Shannon Jackson",
"email": "[email protected]",
"status": "active"
},
{
"id": "7eea5f47-16c1-4cc9-8eb3-03cb264a01d3",
"name": "Mandy Patel",
"email": "[email protected]",
"status": "active"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment