This page loads the modelBase.js file.

Text from the file:

 *   carModel = new Model("car");   // create new data model called "car"
 *   car1 = carModel.create();  // create an instance of the car model
 *   car1.color = "blue";
 *   car1.save();       // save car1 object in local storage
 *   carModel.find({color: "blue"})  // retrieve array of saved objects with color blue
 *
 *   car1.delete();    // remove car1 object from local storage
 *
 *   carModel.delete_all();   // removes all objects from persistent memory
 *
 * Notes and caveats:
 * 1) Operations are not efficient, requiring linear operations
 * 2) The match for find only matches at the top level