Skip to content

Instantly share code, notes, and snippets.

@vickonrails
Created January 23, 2018 13:42
Show Gist options
  • Save vickonrails/5f7db4fd40f56a943878c9d476826af1 to your computer and use it in GitHub Desktop.
Save vickonrails/5f7db4fd40f56a943878c9d476826af1 to your computer and use it in GitHub Desktop.
//users.js
module.exports.users = [
{
name: 'Mark',
age : 19,
occupation: 'Lawyer',
married : true,
children : ['John','Edson','ruby']
},
{
name: 'Richard',
age : 27,
occupation: 'Pilot',
married : false,
children : ['Abel']
},
{
name: 'Levine',
age : 34,
occupation: 'Singer',
married : false,
children : ['John','Promise']
},
{
name: 'Endurance',
age : 45,
occupation: 'Business man',
married : true,
children : ['Mary']
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment