Why the name of the Model is Capitalized. As in their documentation, they have capitalized it.
var schema = new mongoose.Schema({ name: 'string', size: 'string' });
var Tank = mongoose.model('Tank', schema);
Why is Tank
capitalized here? Is there any specific reason?
Sorry if this is not a good question. Any help would be appreciated :)