Skip to content

Instantly share code, notes, and snippets.

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