Skip to content

Instantly share code, notes, and snippets.

@MagnusThor
Created January 29, 2016 13:31
Show Gist options
  • Save MagnusThor/59d6b525a5ff7fedc274 to your computer and use it in GitHub Desktop.
Save MagnusThor/59d6b525a5ff7fedc274 to your computer and use it in GitHub Desktop.
seed.js
$scope.myArray = [];
for (var i = 1; i < 200;i++) {
$scope.myArray.push({
id: i,
firstName: (Math.random() * 9e6).toString(36),
lastName: (Math.random() * 9e6).toString(36),
city: (Math.random() * 9e6).toString(36),
zipcode: i * 100,
created: new Date()
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment