Create a TaffyDB instance
masterYou can initialize a database by passing a JSON array of objects to the TAFFY() function. Each object in the array represents a record in the database.
var product_db = TAFFY([
{ "item" : 1,
"name" : "Blue Ray Player",
"price" : 99.99
},
{ "item" : 2,
"name" : "3D TV",
"price" : 1799.99
}
]);