Skip to content

Instantly share code, notes, and snippets.

@andevsoftware
Last active February 27, 2016 17:28
Show Gist options
  • Save andevsoftware/ff616aad5cdda5c40932 to your computer and use it in GitHub Desktop.
Save andevsoftware/ff616aad5cdda5c40932 to your computer and use it in GitHub Desktop.
Data/Collection - Constructor
var collection = new TSCore.Data.Collection<Movie>([
new Movie("Deadpool", 2016),
new Movie("Triple 9", 2016)
]);
collection.toArray();
// [
// { title: "Deadpool", year: 2016 },
// { title: "Triple 9", year: 2016 },
// ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment