Skip to content

Instantly share code, notes, and snippets.

@asduser
Created April 8, 2016 09:11
Show Gist options
  • Save asduser/3ad17b17464afadbaace2de7f76a74d0 to your computer and use it in GitHub Desktop.
Save asduser/3ad17b17464afadbaace2de7f76a74d0 to your computer and use it in GitHub Desktop.
Often used "mock" data to work with Angularjs.
var users = [
{"FullName": "User one", "Email": "[email protected]", "Phone": "1234567890", "Id": 1},
{"FullName": "User two", "Email": "[email protected]", "Phone": "1234567890", "Id": 2},
{"FullName": "User three", "Email": "[email protected]", "Phone": "1234567890", "Id": 15},
{"FullName": "User four", "Email": "[email protected]", "Phone": "1234567890", "Id": 14},
{"FullName": "User five", "Email": "[email protected]", "Phone": "1234567890", "Id": 12},
{"FullName": "User six", "Email": "[email protected]", "Phone": "1234567890", "Id": 8},
{"FullName": "User seven", "Email": "[email protected]", "Phone": "1234567890", "Id": 16},
{"FullName": "User eight", "Email": "[email protected]", "Phone": "1234567890", "Id": 9},
{"FullName": "User nine", "Email": "[email protected]", "Phone": "1234567890", "Id": 25},
{"FullName": "User ten", "Email": "[email protected]", "Phone": "999", "Id": 26},
{"FullName": "User eleven", "Email": "[email protected]", "Phone": "1234567890", "Id": 27}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment