I'm learning mongoDB (and mongoose) at the moment (on an express server). I hava a database with an array of multiple objects. (Something like this):
{texts: [{s: "a"}, {s: "b"}, {s: "c"}]}
The objects have _id attributes. (59613f576db598107269eea7, 59613f576db598107269eea8, 59613f576db598107269eea9, 59613f576db598107269eeaa)
My plan is doing something like this (visible for the visitor):
<input id="59613f576db598107269eea7" value="a" />
<input id="59613f576db598107269eea8" value="b" />
<input id="59613f576db598107269eea9" value="c" />
What can the visitor of my page do if he knows those keys? Do they tell anything about the number of the objects in my database? Do they tell anything about the time when they were stored? ...