how to delete a record using mongojs

I am using mongojs together with nodejs and express. From so many online documents I only found find() save() update() methods. Is there a delete api ? If so, how to use it?

I am trying to remove one record based on _id which is auto generated by mongdodb...

Any links and examples will be appreciated.

Use the remove method. From a quick look at the source it looks like it's just a passthrough so it likely uses the same parameter conventions as the native node driver, so take a look at those docs.