I want to delete a row in a document via using Mongoose, a wrapper for MongoDB
// this is the document
{
'username': 'Timmy',
'password': 'username',
'token': '83b234bj1n23q8w' // <= I want to delete this row in the document
}
and how do I delete it?