Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 933 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 933 Bytes

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

Planned Features:

  • Support for asynchronous callback functions
  • New Methods:
    • findNode
    • values (similar to entries)
  • constructor that takes any iterable (replaces List.fromArray)