Last active
February 27, 2016 17:32
-
-
Save andevsoftware/503682cb982536e7e57e to your computer and use it in GitHub Desktop.
TSCore\Data\Collection - add method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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