Foxkit List Manual Creating a List The constructor takes any iterable (such as Arrays or Sets) and creates a List. You can also not pass anything and add things later: const list = new List(["lorem", "ipsum", "dolor"]); const list = new List(); list.push("lorem"); Table of Contents Array vs List Usage with TypeScript Static Methods List Properties List Methods Adding and Removing from Lists Working with other Data objects Searching and Filtering Transforming Lists