Table.defineClass()
Define a javascript constructor that will be mapped to this object store.
Syntax
Parameters
Return Value
Constructor function for the defined class.
Remarks
Makes any object extracted from this table be instanceof a class with given structure. You could extend the prototype of the returned constructor function with methods that will be available on all objects returned by the database.
If calling this method before db.open() call, intelligent javascript editors like Visual Studio 2012+ and IntelliJ will be able to do autocomplete for all objects returned by the database, based on the prototype of the constructor and on given structure.
Sample
See Also
Table.mapToClass()